diff --git a/modules/home/apps/tools/neovim/config/lua/plugins/lsp/otter.lua b/modules/home/apps/tools/neovim/config/lua/plugins/lsp/otter.lua new file mode 100644 index 0000000..7343d63 --- /dev/null +++ b/modules/home/apps/tools/neovim/config/lua/plugins/lsp/otter.lua @@ -0,0 +1,11 @@ +return { + "jmbuhr/otter.nvim", + dependencies = { + "hrsh7th/nvim-cmp", + "neovim/nvim-lspconfig", + "nvim-treesitter/nvim-treesitter", + }, + setup = function() + require("otter").activate({ "python", "rust" }, true, true, nil) + end, +}