Terminal mappings

This commit is contained in:
2024-01-28 11:36:13 +01:00
parent 360a40d01a
commit 3c1a418702

View File

@@ -1,16 +1,15 @@
-- return {
-- "AstroNvim/astrocore",
-- ---@type AstroCoreOpts
-- opts = {
-- mappings = {
-- 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]],
-- },
-- },
-- },
-- }
return {}
return {
"AstroNvim/astrocore",
---@type AstroCoreOpts
opts = {
mappings = {
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]],
},
},
},
}