aboutsummaryrefslogtreecommitdiff
path: root/vimrc
diff options
context:
space:
mode:
authorJuan J. Martinez <jjm@usebox.net>2020-04-24 12:12:05 +0100
committerJuan J. Martinez <jjm@usebox.net>2022-05-29 22:57:29 +0100
commit1eeb0808653e72b35512e4c59205663bb881d186 (patch)
tree37a39dde2a948ab3d8b00a8aa50a6504be1df330 /vimrc
parent666df7dea6d575674a1bcca348d2e6150ddd9936 (diff)
downloaddotnvim-1eeb0808653e72b35512e4c59205663bb881d186.tar.gz
dotnvim-1eeb0808653e72b35512e4c59205663bb881d186.zip
Updtaed vim-plug, removed sytastic; default to lsc mappings over ctags
Diffstat (limited to 'vimrc')
-rw-r--r--vimrc18
1 files changed, 2 insertions, 16 deletions
diff --git a/vimrc b/vimrc
index c7121b4..15604bb 100644
--- a/vimrc
+++ b/vimrc
@@ -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