Files
AstroConfig/lua/plugins/15-mappings.lua
2025-03-08 20:23:54 +01:00

23 lines
615 B
Lua

---@type LazySpec
return {
"AstroNvim/astrocore",
---@type AstroCoreOpts
opts = {
mappings = {
n = {
["<Leader>e"] = {
"<Cmd>Neotree toggle reveal reveal_force_cwd<CR>",
desc = "Toggle Explorer",
},
},
t = {
["<Esc>"] = [[<C-\><C-n>]],
["<A-h>"] = [[<C-\><C-N><C-w>h]],
["<A-j>"] = [[<C-\><C-N><C-w>j]],
["<A-k>"] = [[<C-\><C-N><C-w>k]],
["<A-l>"] = [[<C-\><C-N><C-w>l]],
},
},
},
}