commit 8f997d6618f1bb5448146bc89d9f1769378e7246
parent 8f23830e85d1d5087f9fb86a8dae8eb92f493282
Author: mtmn <miro@haravara.org>
Date: Wed, 13 May 2026 21:47:22 +0200
chore: disable lsp by default
Diffstat:
2 files changed, 1 insertion(+), 5 deletions(-)
diff --git a/modules/mixins/dotfiles/config/nvim/fnl/config/lsp.fnl b/modules/mixins/dotfiles/config/nvim/fnl/config/lsp.fnl
@@ -37,8 +37,7 @@
(create-autocmd :FileType {:pattern filetype : callback}))))
(fn config []
- (let [servers {:basedpyright {}
- :clangd {}
+ (let [servers {:clangd {}
:gopls {:settings {:gopls {:analyses {:unusedparams true}
:staticcheck true
:gofumpt true}}}
@@ -53,8 +52,6 @@
:purescriptls {}}]
(vim.lsp.config :purescriptls
{:cmd [:npx :purescript-language-server :--stdio]})
- (each [server config (pairs servers)]
- (vim.lsp.enable server config))
(let [open-floating-preview vim.lsp.util.open_floating_preview]
(set vim.lsp.util.open_floating_preview
(fn [contents syntax opts ...]
diff --git a/modules/mixins/dotfiles/config/nvim/fnl/init.fnl b/modules/mixins/dotfiles/config/nvim/fnl/init.fnl
@@ -32,7 +32,6 @@
(gh :neogitorg/neogit)
(gh :sindrets/diffview.nvim)
{:src (gh :saghen/blink.cmp) :version (vim.version.range "^1")}
- {:src (gh :mrcjkb/rustaceanvim) :version (vim.version.range "^9")}
{:src (gh :neovim/nvim-lspconfig) :version :master}
(gh :tpope/vim-commentary)
(gh :tpope/vim-repeat)