-- n, v, i, t = mode names local M = {} M.general = { i = { -- go to beginning and end [""] = { "^i", "beginning of line" }, [""] = { "", "end of line" }, -- navigate within insert mode [""] = { "", "move left" }, [""] = { "", "move right" }, [""] = { "", "move down" }, [""] = { "", "move up" }, }, n = { [""] = { ":noh ", "clear highlights" }, -- switch between windows [""] = { "h", "window left" }, [""] = { "l", "window right" }, [""] = { "j", "window down" }, [""] = { "k", "window up" }, -- save [""] = { " w ", "save file" }, -- Copy all [""] = { " %y+ ", "copy whole file" }, -- line numbers ["n"] = { " set nu! ", "toggle line number" }, ["rn"] = { " set rnu! ", "toggle relative number" }, -- Allow moving the cursor through wrapped lines with j, k, and -- http://www.reddit.com/r/vim/comments/2k4cbr/problem_with_gj_and_gk/ -- empty mode is same as using :map -- also don't use g[j|k] when in operator pending mode, so it doesn't alter d, y or c behaviour ["j"] = { 'v:count || mode(1)[0:1] == "no" ? "j" : "gj"', opts = { expr = true } }, ["k"] = { 'v:count || mode(1)[0:1] == "no" ? "k" : "gk"', opts = { expr = true } }, [""] = { 'v:count || mode(1)[0:1] == "no" ? "k" : "gk"', opts = { expr = true } }, [""] = { 'v:count || mode(1)[0:1] == "no" ? "j" : "gj"', opts = { expr = true } }, -- new buffer ["b"] = { " enew ", "new buffer" }, ["ch"] = { " NvCheatsheet ", "Mapping cheatsheet" }, }, t = { [""] = { vim.api.nvim_replace_termcodes("", true, true, true), "escape terminal mode" }, }, v = { [""] = { 'v:count || mode(1)[0:1] == "no" ? "k" : "gk"', "move up", opts = { expr = true } }, [""] = { 'v:count || mode(1)[0:1] == "no" ? "j" : "gj"', "move down", opts = { expr = true } }, }, x = { ["j"] = { 'v:count || mode(1)[0:1] == "no" ? "j" : "gj"', "move up", opts = { expr = true } }, ["k"] = { 'v:count || mode(1)[0:1] == "no" ? "k" : "gk"', "move down", opts = { expr = true } }, -- Don't copy the replaced text after pasting in visual mode -- https://vim.fandom.com/wiki/Replace_a_word_with_yanked_text#Alternative_mapping_for_paste ["p"] = { 'p:let @+=@0:let @"=@0', "dont copy replaced text", opts = { silent = true } }, }, } M.tabufline = { plugin = true, n = { -- cycle through buffers [""] = { function() require("nvchad_ui.tabufline").tabuflineNext() end, "goto next buffer", }, [""] = { function() require("nvchad_ui.tabufline").tabuflinePrev() end, "goto prev buffer", }, -- close buffer + hide terminal buffer ["x"] = { function() require("nvchad_ui.tabufline").close_buffer() end, "close buffer", }, }, } M.comment = { plugin = true, -- toggle comment in both modes n = { ["/"] = { function() require("Comment.api").toggle.linewise.current() end, "toggle comment", }, }, v = { ["/"] = { "lua require('Comment.api').toggle.linewise(vim.fn.visualmode())", "toggle comment", }, }, } M.lspconfig = { plugin = true, -- See ` :help vim.lsp.*` for documentation on any of the below functions n = { ["gD"] = { function() vim.lsp.buf.declaration() end, "lsp declaration", }, ["gd"] = { function() vim.lsp.buf.definition() end, "lsp definition", }, ["K"] = { function() vim.lsp.buf.hover() end, "lsp hover", }, ["gi"] = { function() vim.lsp.buf.implementation() end, "lsp implementation", }, ["ls"] = { function() vim.lsp.buf.signature_help() end, "lsp signature_help", }, ["D"] = { function() vim.lsp.buf.type_definition() end, "lsp definition type", }, ["ra"] = { function() require("nvchad_ui.renamer").open() end, "lsp rename", }, ["ca"] = { function() vim.lsp.buf.code_action() end, "lsp code_action", }, ["gr"] = { function() vim.lsp.buf.references() end, "lsp references", }, ["f"] = { function() vim.diagnostic.open_float { border = "rounded" } end, "floating diagnostic", }, ["[d"] = { function() vim.diagnostic.goto_prev() end, "goto prev", }, ["]d"] = { function() vim.diagnostic.goto_next() end, "goto_next", }, ["q"] = { function() vim.diagnostic.setloclist() end, "diagnostic setloclist", }, ["fm"] = { function() vim.lsp.buf.format { async = true } end, "lsp formatting", }, ["wa"] = { function() vim.lsp.buf.add_workspace_folder() end, "add workspace folder", }, ["wr"] = { function() vim.lsp.buf.remove_workspace_folder() end, "remove workspace folder", }, ["wl"] = { function() print(vim.inspect(vim.lsp.buf.list_workspace_folders())) end, "list workspace folders", }, }, } M.nvimtree = { plugin = true, n = { -- toggle [""] = { " NvimTreeToggle ", "toggle nvimtree" }, -- focus ["e"] = { " NvimTreeFocus ", "focus nvimtree" }, }, } M.telescope = { plugin = true, n = { -- find ["ff"] = { " Telescope find_files ", "find files" }, ["fa"] = { " Telescope find_files follow=true no_ignore=true hidden=true ", "find all" }, ["fw"] = { " Telescope live_grep ", "live grep" }, ["fb"] = { " Telescope buffers ", "find buffers" }, ["fh"] = { " Telescope help_tags ", "help page" }, ["fo"] = { " Telescope oldfiles ", "find oldfiles" }, -- git ["cm"] = { " Telescope git_commits ", "git commits" }, ["gt"] = { " Telescope git_status ", "git status" }, -- pick a hidden term ["pt"] = { " Telescope terms ", "pick hidden term" }, -- theme switcher ["th"] = { " Telescope themes ", "nvchad themes" }, }, } M.nvterm = { plugin = true, t = { -- toggle in terminal mode [""] = { function() require("nvterm.terminal").toggle "float" end, "toggle floating term", }, [""] = { function() require("nvterm.terminal").toggle "horizontal" end, "toggle horizontal term", }, [""] = { function() require("nvterm.terminal").toggle "vertical" end, "toggle vertical term", }, }, n = { -- toggle in normal mode [""] = { function() require("nvterm.terminal").toggle "float" end, "toggle floating term", }, [""] = { function() require("nvterm.terminal").toggle "horizontal" end, "toggle horizontal term", }, [""] = { function() require("nvterm.terminal").toggle "vertical" end, "toggle vertical term", }, -- new ["h"] = { function() require("nvterm.terminal").new "horizontal" end, "new horizontal term", }, ["v"] = { function() require("nvterm.terminal").new "vertical" end, "new vertical term", }, }, } M.whichkey = { plugin = true, n = { ["wK"] = { function() vim.cmd "WhichKey" end, "which-key all keymaps", }, ["wk"] = { function() local input = vim.fn.input "WhichKey: " vim.cmd("WhichKey " .. input) end, "which-key query lookup", }, }, } M.blankline = { plugin = true, n = { ["cc"] = { function() local ok, start = require("indent_blankline.utils").get_current_context( vim.g.indent_blankline_context_patterns, vim.g.indent_blankline_use_treesitter_scope ) if ok then vim.api.nvim_win_set_cursor(vim.api.nvim_get_current_win(), { start, 0 }) vim.cmd [[normal! _]] end end, "Jump to current_context", }, }, } M.gitsigns = { plugin = true, n = { -- Navigation through hunks ["]c"] = { function() if vim.wo.diff then return "]c" end vim.schedule(function() require("gitsigns").next_hunk() end) return "" end, "Jump to next hunk", opts = { expr = true }, }, ["[c"] = { function() if vim.wo.diff then return "[c" end vim.schedule(function() require("gitsigns").prev_hunk() end) return "" end, "Jump to prev hunk", opts = { expr = true }, }, -- Actions ["rh"] = { function() require("gitsigns").reset_hunk() end, "Reset hunk", }, ["ph"] = { function() require("gitsigns").preview_hunk() end, "Preview hunk", }, ["gb"] = { function() package.loaded.gitsigns.blame_line() end, "Blame line", }, ["td"] = { function() require("gitsigns").toggle_deleted() end, "Toggle deleted", }, }, } return M