diff options
| author | ache <ache@ache.one> | 2026-04-01 07:11:49 +0200 |
|---|---|---|
| committer | ache <ache@ache.one> | 2026-04-01 07:11:49 +0200 |
| commit | f8b416c6ad26c8d74ef685d32c23e357b0a7d036 (patch) | |
| tree | ea12b996296168f42f8d9b70ecffd8e6a9567103 | |
| parent | Remove a lot of unused configuration files (diff) | |
Use rustaceanvim instead of default rust_analyzer
| -rw-r--r-- | lua/ache/lazy.lua | 1 | ||||
| -rw-r--r-- | lua/ache/plugins/rustaceanvim.lua | 11 |
2 files changed, 11 insertions, 1 deletions
diff --git a/lua/ache/lazy.lua b/lua/ache/lazy.lua index 15fc610..842f602 100644 --- a/lua/ache/lazy.lua +++ b/lua/ache/lazy.lua @@ -73,7 +73,6 @@ require("lazy").setup({ -- LSP config vim.lsp.enable("pyright") -vim.lsp.enable("rust_analyzer") vim.lsp.enable("lua_ls") vim.lsp.enable("clangd") vim.lsp.enable("gopls") diff --git a/lua/ache/plugins/rustaceanvim.lua b/lua/ache/plugins/rustaceanvim.lua new file mode 100644 index 0000000..c1cf667 --- /dev/null +++ b/lua/ache/plugins/rustaceanvim.lua @@ -0,0 +1,11 @@ +return { + "mrcjkb/rustaceanvim", + version = "^8", -- Recommended + lazy = false, -- This plugin is already lazy + enabled = false, + --[ NOTE: + -- + -- You will most likely want to add some keymaps. Most keymaps are only useful in rust files, so I suggest you define them in ~/.config/nvim/after/ftplugin/rust.lua1 + -- + --] +} |