fix(nvim): do not overwrite space key in neo-tree

This commit is contained in:
Price Hiller 2022-10-25 16:52:49 -05:00
parent 5c0d6a205a
commit fca0c5a0a4

View File

@ -1,4 +1,4 @@
local neotree = require('neo-tree') local neotree = require("neo-tree")
vim.g.neo_tree_remove_legacy_commands = 1 vim.g.neo_tree_remove_legacy_commands = 1
neotree.setup({ neotree.setup({
@ -7,8 +7,8 @@ neotree.setup({
}, },
window = { window = {
mappings = { mappings = {
['/'] = 'noop', ["<space>"] = "none",
['/'] = {}, ["/"] = "none",
}, },
}, },
}) })