comparison .vimrc @ 16:d30762aa23dd

merge
author Luka Sitas <lsitas@avatarasoftware.com>
date Tue, 02 Dec 2025 19:44:32 -0500
parents 027a85d0e60e 08bdff1abb15
children 412c33afd395
comparison
equal deleted inserted replaced
15:7edd5f6fe136 16:d30762aa23dd
7 7
8 colorscheme desert 8 colorscheme desert
9 9
10 " Support for tags closing and classes 10 " Support for tags closing and classes
11 source $HOME/.vim/plugins/vim-ai.vim 11 source $HOME/.vim/plugins/vim-ai.vim
12 source $HOME/.vim/plugins/taghelp 12 source $HOME/.vim/plugins/taghelp.vim
13 source $HOME/.vim/plugins/dbtables/dbtables.vim 13 source $HOME/.vim/plugins/dbtables/dbtables.vim
14 source $HOME/.vim/plugins/hghelp/hghelp.vim 14 source $HOME/.vim/plugins/hghelp/hghelp.vim
15 source $HOME/.vim/plugins/globalsearch.vim 15 source $HOME/.vim/plugins/globalsearch.vim
16 16
17 17
88 88
89 call plug#begin() 89 call plug#begin()
90 " Environment Plugins 90 " Environment Plugins
91 " 91 "
92 " NERDTree 92 " NERDTree
93 source $HOME/.vim/plugins/nerdtree 93 source $HOME/.vim/plugins/nerdtree.vim
94 94
95 " Coding and language specifics 95 " Coding and language specifics
96 " 96 "
97 " LSP - ale 97 " LSP - ale
98 source $HOME/.vim/plugins/ale 98 source $HOME/.vim/plugins/ale.vim
99 99
100 " Blade 100 " Blade
101 Plug 'jwalton512/vim-blade', { 'for': 'php' } 101 Plug 'jwalton512/vim-blade', { 'for': 'php' }
102 " Use release branch (recommended) 102 " Use release branch (recommended)
103 source $HOME/.vim/plugins/coc 103 source $HOME/.vim/plugins/coc.vim
104 104
105 " AI-ify 105 " AI-ify
106 Plug 'madox2/vim-ai' 106 Plug 'madox2/vim-ai'
107
108
109 107
110 " LLama.vim 108 " LLama.vim
111 " put before llama.vim loads 109 " put before llama.vim loads
112 " let g:llama_config = { 'show_info': 0, 'endpoint': 'http://127.0.0.1:8012/infill' } 110 " let g:llama_config = { 'show_info': 0, 'endpoint': 'http://127.0.0.1:8012/infill' }
113 " Plug 'ggml-org/llama.vim' 111 " Plug 'ggml-org/llama.vim'
114 112
115 call plug#end() 113 call plug#end()
116 114
117 " CTRLP 115 " CTRLP
118 source $HOME/.vim/plugins/ctrlp 116 source $HOME/.vim/plugins/ctrlp.vim
119 117
120 " Netwr 118 " Netwr
121 set nocp 119 set nocp
122 filetype plugin on " plugins are enabled 120 filetype plugin on " plugins are enabled
123 121