install.fairie/home/dot_local/share/nvchad/mappings.lua

28 lines
460 B
Lua
Raw Normal View History

2023-07-17 13:40:40 -07:00
---@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