Remove syntastic for now

Rust + substrate + tooling xD
This commit is contained in:
Andrew Tomaka 2022-09-13 14:40:28 -04:00
parent 5ab4586494
commit 16fb581726
Signed by: atomaka
GPG key ID: 61209BF70A5B18BE

View file

@ -10,7 +10,6 @@ Plug 'tpope/vim-eunuch'
Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-rhubarb'
Plug 'tpope/vim-surround'
Plug 'vim-syntastic/syntastic'
" languages
Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' }
@ -56,7 +55,7 @@ set number
set relativenumber
set textwidth=80
set colorcolumn=80,120
" set colorcolumn=80,120
" For commands
set infercase
@ -128,16 +127,6 @@ noremap <C-p> :FZF<CR>
" rust.vim
let g:rustfmt_autosave = 1
" syntastic
" recommended settings for syntastic beginners
set statusline+=%#warningmsg#
set statusline+=%{SyntasticStatuslineFlag()}
set statusline+=%*
let g:syntastic_always_populate_loc_list = 1
let g:syntastic_auto_loc_list = 1
let g:syntastic_check_on_open = 1
let g:syntastic_check_on_wq = 0
" vim-bbye
nnoremap <silent> <Leader>bd :Bdelete<CR>