summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-07-03 11:38:37 -0600
committermo khan <mo@mokhan.ca>2025-07-03 11:38:37 -0600
commit133a993e21ff4c52a781929d901e387a2c4f38ab (patch)
treecb1c21a576efef00fd7f81fa3cbf6482f9de6cdf
parenta62db62798eb57a17bd196c7fb7d2e12c1414e22 (diff)
remove syntastic
-rw-r--r--.gitmodules3
m---------pack/plugins/start/syntastic0
-rw-r--r--vimrc10
3 files changed, 3 insertions, 10 deletions
diff --git a/.gitmodules b/.gitmodules
index 8969ac8..fd7ac9c 100644
--- a/.gitmodules
+++ b/.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
diff --git a/pack/plugins/start/syntastic b/pack/plugins/start/syntastic
deleted file mode 160000
-Subproject 8d5e37c29cf5952fbf300b9230bffe424c61a48
diff --git a/vimrc b/vimrc
index 13e3bf5..0cac2ea 100644
--- a/vimrc
+++ b/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
" }}}}