mirror of https://github.com/E-Almqvist/dotfiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
352 B
25 lines
352 B
10 months ago
|
---@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
|