-- Neo-tree mappings -- local wk = require 'which-key' local neotree_helper = require 'custom.plugins.neotree-helper' wk.add { { mode = { 'n', 'v', 'i' }, { 'e', neotree_helper.smart_open, desc = 'File [e]xplorer', silent = true, noremap = true }, }, { mode = { 'n', 'v' }, { '', neotree_helper.smart_open, desc = 'File [e]xplorer', silent = true, noremap = true, hidden = true }, }, } -- The line beneath this is called `modeline`. See `:help modeline` -- vim: ts=2 sts=2 sw=2 et