28 lines
460 B
Lua
28 lines
460 B
Lua
|
---@type MappingsTable
|
||
|
local M = {}
|
||
|
|
||
|
M.general = {
|
||
|
n = {
|
||
|
[";"] = { ":", "enter command mode", opts = { nowait = true } },
|
||
|
},
|
||
|
}
|
||
|
|
||
|
M.nvimtree = {
|
||
|
n = {
|
||
|
-- toggle
|
||
|
["<leader>n"] = { "<cmd> NvimTreeToggle <CR>", "toggle nvimtree" },
|
||
|
|
||
|
-- focus
|
||
|
["<leader>e"] = { "<cmd> NvimTreeFocus <CR>", "focus nvimtree" },
|
||
|
},
|
||
|
}
|
||
|
|
||
|
M.twilight = {
|
||
|
n = {
|
||
|
["<leader>tw"] = { "<cmd>Twilight<cr>", "toggle twilight" },
|
||
|
},
|
||
|
}
|
||
|
|
||
|
-- more keybinds!
|
||
|
|
||
|
return M
|