diff options
| author | ache <ache@ache.one> | 2025-05-14 18:25:56 +0200 |
|---|---|---|
| committer | ache <ache@ache.one> | 2025-05-14 18:25:56 +0200 |
| commit | b2ff4ae1561f86f49d8df62111c68faa8187812e (patch) | |
| tree | f30c3804b54d1c651e61b1b91e0bf35548827a16 /lua/ache/plugins/lsp | |
| parent | Add a shortcut to show all shortkeys (diff) | |
Add an option to quickly disable any plugin
Diffstat (limited to 'lua/ache/plugins/lsp')
| -rw-r--r-- | lua/ache/plugins/lsp/ltex-extra.lua | 1 | ||||
| -rw-r--r-- | lua/ache/plugins/lsp/rust-tools.lua | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/lua/ache/plugins/lsp/ltex-extra.lua b/lua/ache/plugins/lsp/ltex-extra.lua index d877dc4..d07bf7a 100644 --- a/lua/ache/plugins/lsp/ltex-extra.lua +++ b/lua/ache/plugins/lsp/ltex-extra.lua @@ -11,6 +11,7 @@ local ltex_ls_opts = { return { "barreiroleo/ltex_extra.nvim", + enabled = true, ft = { "markdown", "tex", "text" }, dependencies = { "neovim/nvim-lspconfig" }, -- Yes, you can use the opts field, just I'm showing the setup explicitly. diff --git a/lua/ache/plugins/lsp/rust-tools.lua b/lua/ache/plugins/lsp/rust-tools.lua index fe5c97e..6d76dce 100644 --- a/lua/ache/plugins/lsp/rust-tools.lua +++ b/lua/ache/plugins/lsp/rust-tools.lua @@ -3,6 +3,7 @@ --] return { "simrat39/rust-tools.nvim", + enabled = true, config = function() local rt = require("rust-tools") |