local map = vim.keymap.set local opts = { noremap = true, silent = true } -- quickly restart the lsp server map("n", "uu", "lsp restart") -- exit insert mode by double tapping `j` map("i", "jj", "", opts) -- increment/decrement map("n", "+", "", opts) map("n", "-", "", opts) -- select all map("n", "", "ggG", opts)