DOTFILES/dot_config/nvim/lua/custom/mappings.lua

25 lines
352 B
Lua
Raw Normal View History

2024-01-25 19:32:08 -05:00
---@type MappingsTable
local M = {}
M.general = {
n = {
[";"] = { ":", "enter command mode", opts = { nowait = true } },
-- format with conform
["<leader>fm"] = {
function()
require("conform").format()
end,
"formatting",
}
},
v = {
[">"] = { ">gv", "indent"},
},
}
-- more keybinds!
return M