Skip to content

Commit 2fffd84

Browse files
committed
fix: keybindings not being set
1 parent a0c1d9d commit 2fffd84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/nvim-tree/view.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ function M.setup()
111111
a.nvim_buf_set_option(M.View.bufnr, k, v)
112112
end
113113

114-
if not vim.g.nvim_tree_disable_keybindings then
114+
if vim.g.nvim_tree_disable_keybindings ~= 1 then
115115
M.View.bindings = vim.tbl_extend(
116116
'force',
117117
M.View.bindings,

0 commit comments

Comments
 (0)