Mercurial > vim
diff .vimrc @ 22:c8ad85e95854 default tip
Some general updates
| author | Luka Sitas <lsitas@avatarasoftware.com> |
|---|---|
| date | Thu, 16 Jul 2026 14:47:23 -0400 |
| parents | 7cc13548becc |
| children |
line wrap: on
line diff
--- a/.vimrc Wed Mar 04 13:41:22 2026 -0500 +++ b/.vimrc Thu Jul 16 14:47:23 2026 -0400 @@ -11,24 +11,13 @@ source $HOME/.vim/plugins/core/core.vim 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 source $HOME/.vim/plugins/globalsearch.vim source $HOME/.vim/plugins/voicenote/voicenote.vim - -let g:db_user = "" " Replace with your default database username -let g:db_password = "" " Replace with your default database password -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 + " File types autocmd Filetype scss if getfsize(@%) > 300 | setlocal syntax=OFF | endif highlight Comment cterm=italic gui=italic @@ -109,6 +98,10 @@ " AI-ify Plug 'madox2/vim-ai' +" Local Plugins +Plug '/home/lsitas/repos/vim_plugins/dbtables' +Plug '/home/lsitas/repos/vim_plugins/core' + call plug#end() " CTRLP
