Skip to content

Commit 27d30a3

Browse files
committed
Added a few new bells and whistels
1 parent 51a7f61 commit 27d30a3

File tree

7 files changed

+17
-4
lines changed

7 files changed

+17
-4
lines changed

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -201,3 +201,6 @@
201201
[submodule ".vim/bundle/vim-doge"]
202202
path = .vim/bundle/vim-doge
203203
url = https://github.com/kkoomen/vim-doge.git
204+
[submodule ".vim/bundle/vim-ollama"]
205+
path = .vim/bundle/vim-ollama
206+
url = https://github.com/gergap/vim-ollama.git

.vim/bundle/vim-ollama

Submodule vim-ollama added at c869e7d

.vimrc

+9
Original file line numberDiff line numberDiff line change
@@ -1154,6 +1154,15 @@ au BufNewFile,BufNew,BufRead /home/lbt/*.cpp,/home/lbt/*.h,/home/lbt/*.hpp,/home
11541154
"autocmd BufNewFile,BufRead,BufReadPre,BufAdd,BufNew ~/git/devdoc/docs/* set dir=/tmp//
11551155
"autocmd BufNewFile,BufRead,BufReadPre,BufAdd,BufNew ~/git/devdoc/docs/* noswapfile
11561156

1157+
let g:ollama_host = 'http://localhost:11434'
1158+
1159+
let g:ollama_chat_model = 'qwen2.5-coder:7b-instruct-q6_K'
1160+
let g:ollama_model = 'qwen2.5-coder:7b-instruct-q6_K'
1161+
let g:ollama_fim_prefix = '<|fim_prefix|>'
1162+
let g:ollama_fim_middle = '<|fim_middle|>'
1163+
let g:ollama_fim_suffix = '<|fim_suffix|>'
1164+
1165+
11571166
"let g:ale_set_quickfix = 0
11581167
"let g:ale_set_loclist = 0
11591168
"let g:ale_open_list = 1

git/fzf

Submodule fzf updated 75 files

0 commit comments

Comments
 (0)