added keybindings for easy tab navigation (see lua/409/remap.lua), fixed

goto definition delay
This commit is contained in:
2024-04-06 04:23:06 +02:00
parent 804f09d0de
commit 8232705e64
4 changed files with 57 additions and 34 deletions

View File

@@ -62,7 +62,7 @@ vim.api.nvim_create_autocmd("LspAttach", {
callback = function(args)
local bufnr = args.buf
local opts = { buffer = bufnr, remap = false }
local opts = { buffer = bufnr, remap = false, nowait = true }
vim.keymap.set("n", "gd", function()
vim.lsp.buf.definition()