From 78c59cf2bf8eb4b4e9e7ca0cede497df83d31917 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Wed, 2 Aug 2023 09:33:46 +0200 Subject: [PATCH] add vim-which-key ahd vim-chatgpt --- vimrc | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/vimrc b/vimrc index 206c042..9a739a5 100644 --- a/vimrc +++ b/vimrc @@ -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 0 (chatgpt-menu) + " Markdown preview " """""""""""""""""""" let g:vim_markdown_auto_insert_bullets = 1