From d202bbfdea4d8b40b14f0e9429942f8a1f7a9a31 Mon Sep 17 00:00:00 2001 From: zackartz Date: Mon, 24 Jun 2024 23:38:05 -0400 Subject: [PATCH] add otter --- .../tools/neovim/config/lua/plugins/lsp/otter.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 modules/home/apps/tools/neovim/config/lua/plugins/lsp/otter.lua 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, +}