This commit is contained in:
2025-08-04 17:36:35 +02:00
parent 9800f5d265
commit ecaf50a044
11 changed files with 71 additions and 31 deletions

View File

@@ -0,0 +1,2 @@
-- load which-key mappings
require 'custom.keymaps.neotree'

View File

@@ -0,0 +1,7 @@
local wk = require 'which-key'
local neotree = require 'custom.plugins.neotree'
wk.add({
{ "<leader>f", group = "file" }, -- group
{ '<leader>fe', neotree.smart_open(), desc = 'Fichiers...', mode = 'n' },
})