comparison .vimrc @ 11:eeda6b1401ae

changing files to .vim
author luka
date Fri, 28 Nov 2025 08:45:17 -0500
parents 34930197e9d4
children 08bdff1abb15
comparison
equal deleted inserted replaced
8:9c80955f0c6e 11:eeda6b1401ae
4 map <Leader>q :qall<CR> 4 map <Leader>q :qall<CR>
5 set mouse=a 5 set mouse=a
6 inoremap <C-a> <C-x><C-i> 6 inoremap <C-a> <C-x><C-i>
7 7
8 " Support for tags closing and classes 8 " Support for tags closing and classes
9 source $HOME/.vim/plugins/taghelp 9 source $HOME/.vim/plugins/taghelp.vim
10 source $HOME/.vim/plugins/dbtables/dbtables.vim 10 source $HOME/.vim/plugins/dbtables/dbtables.vim
11 source $HOME/.vim/plugins/hghelp/hghelp.vim 11 source $HOME/.vim/plugins/hghelp/hghelp.vim
12 source $HOME/.vim/plugins/globalsearch.vim 12 source $HOME/.vim/plugins/globalsearch.vim
13 13
14 14
81 81
82 call plug#begin() 82 call plug#begin()
83 " Environment Plugins 83 " Environment Plugins
84 " 84 "
85 " NERDTree 85 " NERDTree
86 source $HOME/.vim/plugins/nerdtree 86 source $HOME/.vim/plugins/nerdtree.vim
87 87
88 " Coding and language specifics 88 " Coding and language specifics
89 " 89 "
90 " LSP - ale 90 " LSP - ale
91 source $HOME/.vim/plugins/ale 91 source $HOME/.vim/plugins/ale.vim
92 92
93 " Blade 93 " Blade
94 Plug 'jwalton512/vim-blade', { 'for': 'php' } 94 Plug 'jwalton512/vim-blade', { 'for': 'php' }
95 " Use release branch (recommended) 95 " Use release branch (recommended)
96 source $HOME/.vim/plugins/coc 96 source $HOME/.vim/plugins/coc.vim
97 97
98 " AI-ify 98 " AI-ify
99 Plug 'madox2/vim-ai' 99 Plug 'madox2/vim-ai'
100 100
101 " LLama.vim 101 " LLama.vim
104 " Plug 'ggml-org/llama.vim' 104 " Plug 'ggml-org/llama.vim'
105 105
106 call plug#end() 106 call plug#end()
107 107
108 " CTRLP 108 " CTRLP
109 source $HOME/.vim/plugins/ctrlp 109 source $HOME/.vim/plugins/ctrlp.vim
110 110
111 " Netwr 111 " Netwr
112 set nocp 112 set nocp
113 filetype plugin on " plugins are enabled 113 filetype plugin on " plugins are enabled
114 114