diff .vimrc @ 10:b95a8e2525cc

Better vim-ai support for local model on edit
author Luka Sitas <lsitas@avatarasoftware.com>
date Fri, 28 Nov 2025 08:44:05 -0500
parents 17c557de03e0
children 08bdff1abb15 027a85d0e60e
line wrap: on
line diff
--- a/.vimrc	Tue Nov 18 11:37:01 2025 -0500
+++ b/.vimrc	Fri Nov 28 08:44:05 2025 -0500
@@ -8,6 +8,7 @@
 colorscheme desert
 
 " Support for tags closing and classes
+source $HOME/.vim/plugins/vim-ai.vim
 source $HOME/.vim/plugins/taghelp
 source $HOME/.vim/plugins/dbtables/dbtables.vim
 source $HOME/.vim/plugins/hghelp/hghelp.vim
@@ -104,10 +105,12 @@
 " AI-ify
 Plug 'madox2/vim-ai'
 
+
+
 " LLama.vim
 " put before llama.vim loads
-" let g:llama_config = { 'show_info': 0, 'endpoint': 'http://0.0.0.0:8080/infill' }
-" Plug 'ggml-org/llama.vim'
+let g:llama_config = { 'show_info': 0, 'endpoint': 'http://127.0.0.1:8012/infill' }
+Plug 'ggml-org/llama.vim'
 
 call plug#end()