nvchad-custom/mappings.lua

127 lines
3.6 KiB
Lua
Raw Normal View History

2024-01-19 17:26:59 +01:00
---@type MappingsTable
2024-01-19 19:39:18 +01:00
local M = {}
2024-01-19 18:23:22 +01:00
M.disabled = {
n = {
["<leader>h"] = "",
["<C-a>"] = "",
2024-01-19 19:00:00 +01:00
["<C-s>"] = "",
2024-01-19 18:23:22 +01:00
},
}
2024-01-19 19:39:18 +01:00
M.lazygit = {
plugin = true,
n = {
["<leader>gg"] = { "<cmd>LazyGit<CR>", "Open LazyGit" },
},
}
2024-01-19 18:23:22 +01:00
M.telescope = {
plugin = true,
n = {
-- find
["<localleader>ff"] = { "<cmd> Telescope find_files <CR>", "Find files" },
["<localleader>fa"] = { "<cmd> Telescope find_files follow=true no_ignore=true hidden=true <CR>", "Find all" },
["<localleader>fw"] = { "<cmd> Telescope live_grep <CR>", "Live grep" },
["<localleader>fb"] = { "<cmd> Telescope buffers <CR>", "Find buffers" },
["<localleader>fh"] = { "<cmd> Telescope help_tags <CR>", "Help page" },
["<localleader>fo"] = { "<cmd> Telescope oldfiles <CR>", "Find oldfiles" },
["<localleader>fz"] = { "<cmd> Telescope current_buffer_fuzzy_find <CR>", "Find in current buffer" },
-- git
["<localleader>cm"] = { "<cmd> Telescope git_commits <CR>", "Git commits" },
["<localleader>gt"] = { "<cmd> Telescope git_status <CR>", "Git status" },
-- pick a hidden term
["<localleader>pt"] = { "<cmd> Telescope terms <CR>", "Pick hidden term" },
-- theme switcher
["<localleader>th"] = { "<cmd> Telescope themes <CR>", "Nvchad themes" },
["<localleader>ma"] = { "<cmd> Telescope marks <CR>", "telescope bookmarks" },
},
}
M.nvimtree = {
plugin = true,
n = {
-- toggle
["<C-n>"] = { "<cmd> NvimTreeToggle <CR>", "Toggle nvimtree" },
["<F5>"] = { "<cmd> NvimTreeToggle <CR>", "Toggle nvimtree" },
-- focus
["<localleader>e"] = { "<cmd> NvimTreeFocus <CR>", "Focus nvimtree" },
},
}
2024-01-19 17:26:59 +01:00
M.general = {
2024-01-19 18:23:22 +01:00
i = {
-- go to beginning and end
["<C-b>"] = { "<HOME>", "Beginning of line" },
["<C-e>"] = { "<End>", "End of line" },
-- navigate within insert mode
["<C-h>"] = { "<Left>", "Move left" },
["<C-l>"] = { "<Right>", "Move right" },
["<C-j>"] = { "<Down>", "Move down" },
["<C-k>"] = { "<Up>", "Move up" },
},
2024-01-19 17:26:59 +01:00
n = {
2024-01-19 18:23:22 +01:00
--big move
2024-01-19 19:00:00 +01:00
["<A-k>"] = { "<C-u>", "big step down" },
["<A-j>"] = { "<C-d>", "big step down" },
2024-01-19 18:23:22 +01:00
-- easy newline
["OO"] = { "O<ESC>", "insert a line above", opts = { nowait = true } },
["oo"] = { "o<ESC>", "insert a line below", opts = { nowait = true } },
-- go to beginning and end
["H"] = { "<HOME>", "Beginning of line" },
["L"] = { "<End>", "End of line" },
-- do something useful with the arrows
["<Up>"] = { "<cmd>move-2<CR>==", "Move line up", opts = { expr = true } },
["<Down>"] = { "<cmd>move+<CR>==", "Move line down", opts = { expr = true } },
["<LEFT>"] = { "<<", "Less indentation", opts = { expr = true } },
["<RIGHT>"] = { ">>", "More indentation", opts = { expr = true } },
2024-01-19 17:26:59 +01:00
-- format with conform
2024-01-19 18:23:22 +01:00
["<leader>fm"] = {
2024-01-19 17:26:59 +01:00
function()
require("conform").format()
end,
"formatting",
2024-01-19 18:23:22 +01:00
},
2024-01-19 17:26:59 +01:00
2024-01-19 18:23:22 +01:00
["<leader>tw"] = {
function()
vim.opt_local.wrap = not vim.wo.wrap
vim.opt_local.breakindent = not vim.wo.breakindent
if vim.wo.colorcolumn == "" then
vim.opt_local.colorcolumn = tostring(vim.bo.textwidth)
else
vim.opt_local.colorcolumn = ""
end
end,
"toggle wrap",
},
2024-01-19 17:26:59 +01:00
},
v = {
2024-01-19 18:23:22 +01:00
-- go to beginning and end
["H"] = { "<HOME>", "Beginning of line" },
["L"] = { "<End>", "End of line" },
["<LEFT>"] = { "<gv", "Less indentation" },
["<RIGHT>"] = { ">gv", "More indentation" },
},
x = {
["<Up>"] = { "move'<-2<CR>gv=gv", "Move line up", opts = { expr = true } },
["<Down>"] = { "move'<-2<CR>gv=gv", "Move line down", opts = { expr = true } },
2024-01-19 17:26:59 +01:00
},
}
-- more keybinds!
return M