From fca0c5a0a4ccc8bd2b39aa4d4c8b18be260f1909 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Tue, 25 Oct 2022 16:52:49 -0500 Subject: [PATCH] fix(nvim): do not overwrite space key in neo-tree --- .../primary/config/lua/plugins/configs/neotree.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dots/.nvim-environments/primary/config/lua/plugins/configs/neotree.lua b/dots/.nvim-environments/primary/config/lua/plugins/configs/neotree.lua index 1492e22f..93b84fc9 100644 --- a/dots/.nvim-environments/primary/config/lua/plugins/configs/neotree.lua +++ b/dots/.nvim-environments/primary/config/lua/plugins/configs/neotree.lua @@ -1,4 +1,4 @@ -local neotree = require('neo-tree') +local neotree = require("neo-tree") vim.g.neo_tree_remove_legacy_commands = 1 neotree.setup({ @@ -7,8 +7,8 @@ neotree.setup({ }, window = { mappings = { - ['/'] = 'noop', - ['/'] = {}, + [""] = "none", + ["/"] = "none", }, }, })