From 3f59accc899f3c6fcf532b326eb5542f61eab476 Mon Sep 17 00:00:00 2001 From: Fabio Lenherr / DashieTM Date: Mon, 15 May 2023 01:03:59 +0200 Subject: [PATCH] chore: Remove unused plugin --- nvim/lua/plugins/plugins.lua | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/nvim/lua/plugins/plugins.lua b/nvim/lua/plugins/plugins.lua index a816354..127dc5e 100644 --- a/nvim/lua/plugins/plugins.lua +++ b/nvim/lua/plugins/plugins.lua @@ -168,20 +168,6 @@ return { require("neoscroll.config").set_mappings(t) end, }, - { - "simrat39/rust-tools.nvim", - lazy = true, - event = "FileType rust", - dependencies = { "neovim/nvim-lspconfig", "nvim-lua/plenary.nvim", "mfussenegger/nvim-dap" }, - opts = function() - local extension_path = vim.env.HOME .. "/.local/share/nvim/mason/packages/codelldb/extension/" - local codelldb_path = extension_path .. "adapter/codelldb" - local liblldb_path = extension_path .. "lldb/lib/liblldb.dylib" - return { - dap = { adapter = require("rust-tools.dap").get_codelldb_adapter(codelldb_path, liblldb_path) }, - } - end, - }, { "kaarmu/typst.vim", lazy = true,