mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
use maple font
This commit is contained in:
parent
1bbdd77d5c
commit
16ab036322
18 changed files with 222 additions and 32 deletions
33
home/dot_config/nvim/lua/keymaps/tmap.lua
Normal file
33
home/dot_config/nvim/lua/keymaps/tmap.lua
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
local M = {
|
||||
{
|
||||
keys = "<C-w>h",
|
||||
cmd = "<C-\\><C-n><C-w>h",
|
||||
opts = { desc = "Terminal window left", silent = true },
|
||||
},
|
||||
{
|
||||
keys = "<C-w>j",
|
||||
cmd = "<C-\\><C-n><C-w>j",
|
||||
opts = { desc = "Terminal window down", silent = true },
|
||||
},
|
||||
{
|
||||
keys = "<C-w>k",
|
||||
cmd = "<C-\\><C-n><C-w>k",
|
||||
opts = { desc = "Terminal window up", silent = true },
|
||||
},
|
||||
{
|
||||
keys = "<C-w>l",
|
||||
cmd = "<C-\\><C-n><C-w>l",
|
||||
opts = { desc = "Terminal window right", silent = true },
|
||||
},
|
||||
{
|
||||
keys = "<C-w>",
|
||||
cmd = "<C-\\><C-n><C-w>",
|
||||
opts = { desc = "Terminal window prefix", silent = true },
|
||||
},
|
||||
}
|
||||
|
||||
for _, map in ipairs(M) do
|
||||
map.mode = "t"
|
||||
end
|
||||
|
||||
return M
|
||||
Loading…
Add table
Add a link
Reference in a new issue