Mercurial > vim
diff .vimrc @ 12:08bdff1abb15
merging heads
| author | luka |
|---|---|
| date | Fri, 28 Nov 2025 08:46:48 -0500 |
| parents | eeda6b1401ae b95a8e2525cc |
| children | d30762aa23dd |
line wrap: on
line diff
--- a/.vimrc Fri Nov 28 08:45:17 2025 -0500 +++ b/.vimrc Fri Nov 28 08:46:48 2025 -0500 @@ -5,7 +5,10 @@ set mouse=a inoremap <C-a> <C-x><C-i> +colorscheme desert + " Support for tags closing and classes +source $HOME/.vim/plugins/vim-ai.vim source $HOME/.vim/plugins/taghelp.vim source $HOME/.vim/plugins/dbtables/dbtables.vim source $HOME/.vim/plugins/hghelp/hghelp.vim @@ -17,6 +20,10 @@ let g:db_name = "" " Replace with your default database name let g:db_host = "" " Replace with your default database name +function! GeneratePhpCtags() + let command = 'ctags -R --fields=+aimS --php-kinds=cdfint --languages=php --extras=+q --tag-relative=yes --exclude=".git" --exclude=".hg" --exclude="node_modules" --exclude="composer.phar" --totals=yes' + let output = system(command) +endfunction syntax on syntax enable @@ -100,8 +107,8 @@ " 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()
