diff options
author | Juan J. Martinez <jjm@usebox.net> | 2020-04-24 12:12:05 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2022-05-29 22:57:29 +0100 |
commit | 1eeb0808653e72b35512e4c59205663bb881d186 (patch) | |
tree | 37a39dde2a948ab3d8b00a8aa50a6504be1df330 /vimrc | |
parent | 666df7dea6d575674a1bcca348d2e6150ddd9936 (diff) | |
download | dotnvim-1eeb0808653e72b35512e4c59205663bb881d186.tar.gz dotnvim-1eeb0808653e72b35512e4c59205663bb881d186.zip |
Updtaed vim-plug, removed sytastic; default to lsc mappings over ctags
Diffstat (limited to 'vimrc')
-rw-r--r-- | vimrc | 18 |
1 files changed, 2 insertions, 16 deletions
@@ -53,7 +53,6 @@ Plug 'rbong/vim-crystalline' Plug 'fatih/vim-go' Plug 'natebosch/vim-lsc' Plug 'samsaga2/vim-z80' -Plug 'scrooloose/syntastic' Plug 'tomtom/tcomment_vim' call plug#end() @@ -86,21 +85,6 @@ let g:crystalline_theme = 'gruvbox' set laststatus=2 -" syntastic -let g:syntastic_python_checkers = ['flake8', 'pyflakes'] -let g:syntastic_go_checkers = ['go', 'golint', 'govet', 'errcheck'] -let g:syntastic_always_populate_loc_list = 1 -let g:syntastic_auto_loc_list = 0 -let g:syntastic_loc_list_height = 5 - -" default to passive and manual checks -let g:syntastic_mode_map = { - \ 'mode': 'passive', - \ 'active_filetypes': [ 'python', 'go' ] } - -" make easy to perform a check (C-F6) -noremap <F30> :SyntasticCheck<CR> - "" vim-autoformat (C-F5) noremap <F29> :Autoformat<CR> @@ -143,6 +127,8 @@ let NERDTreeQuitOnOpen=1 let g:loaded_gentags#ctags = 1 " LSC conf +" +let g:lsc_auto_map = {'defaults': v:true, 'FindImplementations': ''} " Required for operations modifying multiple buffers like rename. set hidden |