-- 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"', "Move down", opts = { expr = true } }, ["k"] = { 'v:count || mode(1)[0:1] == "no" ? "k" : "gk"', "Move up", opts = { expr = true } }, [""] = { '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 } }, -- new buffer ["b"] = { " enew ", "New buffer" }, ["ch"] = { " NvCheatsheet ", "Mapping cheatsheet" }, ["fm"] = { function() vim.lsp.buf.format { async = true } end, "LSP formatting", }, }, 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 } }, ["<"] = { ""] = { ">gv", "Indent line" }, }, x = { ["j"] = { 'v:count || mode(1)[0:1] == "no" ? "j" : "gj"', "Move down", opts = { expr = true } }, ["k"] = { 'v:count || mode(1)[0:1] == "no" ? "k" : "gk"', "Move up", 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.tabufline").tabuflineNext() end, "Goto next buffer", }, [""] = { function() require("nvchad.tabufline").tabuflinePrev() end, "Goto prev buffer", }, -- close buffer + hide terminal buffer ["x"] = { function() require("nvchad.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.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", }, ["lf"] = { function() vim.diagnostic.open_float { border = "rounded" } end, "Floating diagnostic", }, ["[d"] = { function() vim.diagnostic.goto_prev { float = { border = "rounded" } } end, "Goto prev", }, ["]d"] = { function() vim.diagnostic.goto_next { float = { border = "rounded" } } end, "Goto next", }, ["q"] = { function() vim.diagnostic.setloclist() end, "Diagnostic setloclist", }, ["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", }, }, v = { ["ca"] = { function() vim.lsp.buf.code_action() end, "LSP code action", }, }, } 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" }, ["fz"] = { " Telescope current_buffer_fuzzy_find ", "Find in current buffer" }, -- 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" }, ["ma"] = { " Telescope marks ", "telescope bookmarks" }, }, } M.terminal = { n = { -- spawn new terms ["h"] = { function() require("nvchad.term").new { pos = "sp", size = 0.3 } end, "New horizontal term", }, ["v"] = { function() require("nvchad.term").new { pos = "vsp", size = 0.3 } end, "New vertical term", }, -- toggle terms [""] = { function() require("nvchad.term").toggle { pos = "vsp", id = "vtoggleTerm", size = 0.3 } end, "New vertical term", }, [""] = { function() require("nvchad.term").toggle { pos = "sp", id = "htoggleTerm", size = 0.2 } end, "New vertical term", }, [""] = { function() require("nvchad.term").toggle { pos = "float", id = "floatTerm" } end, "Toggleable Floating term", }, }, -- toggle terms in terminal mode t = { [""] = { function() local win = vim.api.nvim_get_current_win() vim.api.nvim_win_close(win, true) end, "close term in terminal mode", }, [""] = { function() require("nvchad.term").toggle { pos = "vsp", id = "vtoggleTerm" } end, "New vertical term", }, [""] = { function() require("nvchad.term").toggle { pos = "sp", id = "htoggleTerm" } end, "New vertical term", }, [""] = { function() require("nvchad.term").toggle { pos = "float", id = "floatTerm" } end, "Toggleable Floating 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 config = { scope = {} } config.scope.exclude = { language = {}, node_type = {} } config.scope.include = { node_type = {} } local node = require("ibl.scope").get(vim.api.nvim_get_current_buf(), config) if node then local start_row, _, end_row, _ = node:range() if start_row ~= end_row then vim.api.nvim_win_set_cursor(vim.api.nvim_get_current_win(), { start_row + 1, 0 }) vim.api.nvim_feedkeys("_", "n", true) end 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