add vim-which-key ahd vim-chatgpt

This commit is contained in:
Simon Vieille 2023-08-02 09:33:46 +02:00
parent bafb4aafac
commit 78c59cf2bf
Signed by: deblan
GPG key ID: 579388D585F70417

14
vimrc
View file

@ -106,6 +106,10 @@ Plugin 'cocopon/iceberg.vim'
Plugin 'voldikss/vim-floaterm'
Plugin 'liuchengxu/vim-which-key'
Plugin 'CoderCookE/vim-chatgpt'
call vundle#end()
"""""""""""""""""""""""""""
@ -175,6 +179,16 @@ let g:NERDTreeGitStatusIndicatorMapCustom = {
let s:tlist_0_v_count = 0
" ChatGPT "
"""""""""""
let g:chat_gpt_max_tokens=2000
let g:chat_gpt_model='gpt-3.5-turbo'
let g:chat_gpt_session_mode=1
let g:chat_gpt_temperature = 0.7
let g:chat_gpt_lang = 'French'
vmap <silent> <leader>0 <Plug>(chatgpt-menu)
" Markdown preview "
""""""""""""""""""""
let g:vim_markdown_auto_insert_bullets = 1