Commit 133a993
Changed files (3)
pack/plugins/start/syntastic
@@ -1,1 +0,0 @@
-Subproject commit 8d5e37c29cf5952fbf300b9230bffe424c61a488
.gitmodules
@@ -63,9 +63,6 @@
[submodule "pack/plugins/start/scss"]
path = pack/plugins/start/scss
url = https://github.com/cakebaker/scss-syntax.vim.git
-[submodule "pack/plugins/start/syntastic"]
- path = pack/plugins/start/syntastic
- url = https://github.com/vim-syntastic/syntastic.git
[submodule "pack/plugins/start/tlib"]
path = pack/plugins/start/tlib
url = https://github.com/tomtom/tlib_vim.git
vimrc
@@ -102,7 +102,6 @@ if has("statusline") && !&cp
set statusline+=/
set statusline+=%04L]
set statusline+=%#warningmsg#
- set statusline+=%{SyntasticStatuslineFlag()}
set statusline+=%*
endif
@@ -242,11 +241,8 @@ let g:rust_recommended_style = 0
let g:rustfmt_autosave = 1
let g:rustfmt_options = '--style-edition 2024'
let g:snipMate = { 'snippet_version' : 1 }
-let g:syntastic_always_populate_loc_list = 0
-let g:syntastic_auto_loc_list = 0
-let g:syntastic_check_on_open = 0
-let g:syntastic_check_on_wq = 0
-let g:syntastic_go_checkers = ['golint', 'govet']
-let g:syntastic_mode_map = { 'mode': 'active', 'passive_filetypes': ['go'] }
+
+" No LSP - just use your existing nvim setup for Rust development
+" Keep regular vim for everything else
" }}}}