e3bad09e9f
<leader>n to hide signcolumn, line numbers and virtual text
164 lines
5.2 KiB
Lua
164 lines
5.2 KiB
Lua
-- Shorten function name
|
|
local keymap = vim.keymap.set
|
|
-- Silent keymap option
|
|
local opts = { silent = true }
|
|
|
|
--Remap space as leader key
|
|
keymap("", "<Space>", "<Nop>", opts)
|
|
vim.g.mapleader = " "
|
|
|
|
-- Modes
|
|
-- normal_mode = "n",
|
|
-- insert_mode = "i",
|
|
-- visual_mode = "v",
|
|
-- visual_block_mode = "x",
|
|
-- term_mode = "t",
|
|
-- command_mode = "c",
|
|
|
|
-- Normal --
|
|
-- Better window navigation
|
|
keymap("n", "<C-h>", "<C-w>h", opts)
|
|
keymap("n", "<C-j>", "<C-w>j", opts)
|
|
keymap("n", "<C-k>", "<C-w>k", opts)
|
|
keymap("n", "<C-l>", "<C-w>l", opts)
|
|
|
|
-- Resize with arrows
|
|
keymap("n", "<C-Up>", ":resize -2<CR>", opts)
|
|
keymap("n", "<C-Down>", ":resize +2<CR>", opts)
|
|
keymap("n", "<C-Left>", ":vertical resize -2<CR>", opts)
|
|
keymap("n", "<C-Right>", ":vertical resize +2<CR>", opts)
|
|
|
|
-- Navigate buffers
|
|
keymap("n", "<M-l>", ":bnext<CR>", opts)
|
|
keymap("n", "<M-h>", ":bprevious<CR>", opts)
|
|
for _, mode in ipairs({"n", "i", "v"}) do
|
|
vim.keymap.set(mode, '<A-1>', "<Cmd>BufferLineGoToBuffer 1<CR>", { noremap = true, silent = true })
|
|
vim.keymap.set(mode, '<A-2>', "<Cmd>BufferLineGoToBuffer 2<CR>", { noremap = true, silent = true })
|
|
vim.keymap.set(mode, '<A-3>', "<Cmd>BufferLineGoToBuffer 3<CR>", { noremap = true, silent = true })
|
|
vim.keymap.set(mode, '<A-4>', "<Cmd>BufferLineGoToBuffer 4<CR>", { noremap = true, silent = true })
|
|
vim.keymap.set(mode, '<A-5>', "<Cmd>BufferLineGoToBuffer 5<CR>", { noremap = true, silent = true })
|
|
end
|
|
|
|
|
|
-- Clear highlights
|
|
keymap("n", "<leader>h", "<cmd>nohlsearch<CR>", opts)
|
|
|
|
-- Close buffers
|
|
keymap("n", "<M-q>", "<cmd>Bdelete<CR>", opts)
|
|
keymap("n", "<M-Q>", "<cmd>Bdelete!<CR>", opts)
|
|
|
|
-- Better paste
|
|
keymap("v", "p", '"_dP', opts)
|
|
|
|
-- Insert --
|
|
-- Press jk fast to enter
|
|
--keymap("i", "jk", "<ESC>", opts)
|
|
|
|
-- Visual --
|
|
-- Stay in indent mode
|
|
keymap("v", "<", "<gv", opts)
|
|
keymap("v", ">", ">gv", opts)
|
|
|
|
-- Plugins --
|
|
|
|
-- NvimTree
|
|
keymap("n", "<leader>e", ":NvimTreeToggle<CR>", opts)
|
|
|
|
-- Telescope
|
|
keymap("n", "<leader>ff", ":Telescope find_files<CR>", opts)
|
|
keymap("n", "<leader>ft", ":Telescope live_grep<CR>", opts)
|
|
keymap("n", "<leader>fp", ":Telescope projects<CR>", opts)
|
|
keymap("n", "<leader>fb", ":Telescope buffers<CR>", opts)
|
|
|
|
-- Git
|
|
--keymap("n", "<leader>gg", "<cmd>lua _LAZYGIT_TOGGLE()<CR>", opts)
|
|
|
|
-- Comment
|
|
keymap("n", "<leader>/", "<cmd>lua require('Comment.api').toggle_current_linewise()<cr>", opts)
|
|
keymap("x", "<leader>/", '<esc><cmd>lua require("Comment.api").toggle_linewise_op(vim.fn.visualmode())<cr>')
|
|
|
|
-- DAP
|
|
keymap("n", "<F9>", "<cmd>lua require'dap'.toggle_breakpoint()<cr>", opts)
|
|
keymap("n", "<F5>", "<cmd>lua require'dap'.continue()<cr>", opts)
|
|
keymap("n", "<F10>", "<cmd>lua require'dap'.step_over()<cr>", opts)
|
|
keymap("n", "<F11>", "<cmd>lua require'dap'.step_into()<cr>", opts)
|
|
keymap("n", "<F23>", "<cmd>lua require'dap'.step_out()<cr>", opts)
|
|
keymap("n", "<leader>dr", "<cmd>lua require'dap'.repl.toggle()<cr>", opts)
|
|
keymap("n", "<leader>dl", "<cmd>lua require'dap'.run_last()<cr>", opts)
|
|
keymap("n", "<leader>du", "<cmd>lua require'dapui'.toggle()<cr>", opts)
|
|
keymap("n", "<F17>", "<cmd>lua require'dap'.terminate()<cr>", opts) -- Shift+F5
|
|
|
|
---- Vimspector
|
|
--keymap("n", "<F9>", "<Plug>VimspectorToggleBreakpoint", opts)
|
|
--keymap("n", "<F5>", "<plug>VimspectorContinue", opts)
|
|
--keymap("n", "<F10>", "<Plug>VimspectorStepOver", opts)
|
|
--keymap("n", "<F11>", "<Plug>VimspectorStepInto", opts)
|
|
--keymap("n", "<F23>", "<Plug>VimspectorStepOut", opts)
|
|
--keymap("n", "<F17>", "<cmd>VimspectorReset<cr>", opts) -- Shift+F5
|
|
--keymap("n", "<F41>", "<Plug>VimspectorRestart", opts) -- Ctrl+Shift+F5
|
|
--keymap("n", "<leader>di", "<Plug>VimspectorBalloonEval", opts)
|
|
|
|
-- move.nvim
|
|
keymap('n', '<M-j>', ':MoveLine(1)<cr>', opts)
|
|
keymap('n', '<M-k>', ':MoveLine(-1)<cr>', opts)
|
|
keymap('x', '<M-j>', ':MoveBlock(1)<cr>', opts)
|
|
keymap('x', '<M-k>', ':MoveBlock(-1)<cr>', opts)
|
|
|
|
-- disable arrow keys
|
|
keymap("n", "<Right>", "<Nop>", opts)
|
|
keymap("n", "<Left>", "<Nop>", opts)
|
|
keymap("n", "<Up>", "<Nop>", opts)
|
|
keymap("n", "<Down>", "<Nop>", opts)
|
|
keymap("i", "<Right>", "<Nop>", opts)
|
|
keymap("i", "<Left>", "<Nop>", opts)
|
|
keymap("i", "<Up>", "<Nop>", opts)
|
|
keymap("i", "<Down>", "<Nop>", opts)
|
|
|
|
-- move through wrapped lines
|
|
keymap("n", "j", "gj")
|
|
keymap("n", "k", "gk")
|
|
|
|
-- use Alt + ijkl to move in insert mode
|
|
keymap("i", "<M-l>", "<Right>", opts)
|
|
keymap("i", "<M-h>", "<Left>", opts)
|
|
keymap("i", "<M-j>", "<C-o>gj", opts)
|
|
keymap("i", "<M-k>", "<C-o>gk", opts)
|
|
|
|
local function clean_screen()
|
|
vim.o.number = not vim.o.number;
|
|
--if not vim.diagnostic.get_next() then return end
|
|
if vim.o.number then
|
|
vim.diagnostic.show()
|
|
vim.opt.signcolumn = "yes"
|
|
else
|
|
vim.diagnostic.hide()
|
|
vim.opt.signcolumn = "no"
|
|
end
|
|
end
|
|
|
|
keymap("n", "<leader>n", clean_screen, opts)
|
|
|
|
local function otherkeymaps()
|
|
local ok
|
|
local wk
|
|
local gs
|
|
ok, wk = pcall(require, "which-key")
|
|
if not ok then
|
|
return
|
|
end
|
|
ok, gs = pcall(require, "gitsigns")
|
|
if not ok then
|
|
return
|
|
end
|
|
wk.register({
|
|
g = {
|
|
name = "gitsigns",
|
|
p = { "<cmd>Gitsigns preview_hunk<cr>", "Preview hunk" },
|
|
b = { function() gs.blame_line{full=false} end, "Blame line (short)" },
|
|
B = { function() gs.blame_line{full=true} end, "Blame line (full)" }
|
|
},
|
|
prefix = "<leader>"
|
|
})
|
|
end
|
|
|
|
otherkeymaps()
|