diff --git a/lua/plugins.lua b/lua/plugins.lua index e2f5fed..6fdbe0f 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -161,10 +161,6 @@ local plugins = { lazy = true, event = "VimEnter", }, - { - "simrat39/symbols-outline.nvim", - config = require("plugins.symbols-outline"), - }, { "RubixDev/mason-update-all", config = require("plugins.mason_update_all"), diff --git a/lua/plugins/symbols-outline.lua b/lua/plugins/symbols-outline.lua deleted file mode 100644 index 6553707..0000000 --- a/lua/plugins/symbols-outline.lua +++ /dev/null @@ -1,21 +0,0 @@ --- https://github.com/simrat39/symbols-outline.nvim - -local function setup() - local outline = require("symbols-outline") - outline.setup({ - show_relative_numbers = true, - keymaps = { - fold = { "h", "zc", }, - unfold = { "l", "zo", }, - fold_all = "zM", - unfold_all = "zR", - }, - }) - vim.keymap.set( - "n", - "ot", - vim.cmd.SymbolsOutline - ) -end - -return setup