Mercurial > vim
diff .vimrc @ 7:34930197e9d4
Updating hg diff tool.
Adding support for global searching
| author | Luka Sitas <lsitas@avatarasoftware.com> |
|---|---|
| date | Thu, 30 Oct 2025 13:45:31 -0400 |
| parents | 3017fd33ad8b |
| children | 17c557de03e0 eeda6b1401ae |
line wrap: on
line diff
--- a/.vimrc Tue Oct 28 15:26:12 2025 -0400 +++ b/.vimrc Thu Oct 30 13:45:31 2025 -0400 @@ -2,7 +2,6 @@ map <Space> <leader> map <Leader>w :update<CR> map <Leader>q :qall<CR> -map <Leader>g :term gpt<CR> set mouse=a inoremap <C-a> <C-x><C-i> @@ -10,6 +9,8 @@ source $HOME/.vim/plugins/taghelp source $HOME/.vim/plugins/dbtables/dbtables.vim source $HOME/.vim/plugins/hghelp/hghelp.vim +source $HOME/.vim/plugins/globalsearch.vim + let g:db_user = "" " Replace with your default database username let g:db_password = "" " Replace with your default database password @@ -24,6 +25,7 @@ highlight Comment cterm=italic gui=italic autocmd FileType *.blade.php setlocal commentstring=#\ %s +set path+=** set nowrap " Dont wrap set backspace=indent,eol,start " http://vi.stackexchange.com/a/2163 set laststatus=2 " Show status line on startup
