X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/1dcd431c2137ddcc21afd808e9b3aeaf1078ac43..601695ff35f419ba0389b9db98b9c8abc422f665:/nvim/lua/plugins/editor.lua diff --git a/nvim/lua/plugins/editor.lua b/nvim/lua/plugins/editor.lua index b4816a0..c3281fe 100644 --- a/nvim/lua/plugins/editor.lua +++ b/nvim/lua/plugins/editor.lua @@ -117,6 +117,9 @@ return { { "folke/trouble.nvim", cmd = { "Trouble" }, opts = { + keys = { + [""] = "fold_toggle", + }, modes = { lsp = { win = { position = "right" }, @@ -173,28 +176,4 @@ return { { "sT", "TodoTelescope keywords=TODO,FIX,FIXME", desc = "Todo/Fix/Fixme" }, }, }, - { - "neo-tree.nvim", - enabled = false, - lazy = false, - opts = { - filesystem = { - -- TODO: review these - bind_to_cwd = false, - follow_current_file = { - enabled = false, - }, - }, - }, - keys = function() - local NeoTree = function(args) - return function() - require("neo-tree.command").execute(args) - end - end - return { - { "fe", NeoTree({ toggle = true, dir = vim.loop.cwd() }) }, - } - end, - }, }