all repos

init.lua @ 853686a86f3d9b49b3cf676cbd2f3875f8111959

my nvim config
1 files changed, 4 insertions(+), 4 deletions(-)
feat(lsp): update goto diagnostic keymaps
Author: Smirnov Oleksandr ss2316544@gmail.com
Committed at: 2022-09-29 13:47:54 +0300
Parent: 9b740ba
M lua/configs/lsp/attach.lua

@@ -27,15 +27,15 @@ map("<leader>lf", "<cmd>lua vim.lsp.buf.format {async = true}<cr>")

map("<leader>ls", "<cmd>Telescope lsp_document_symbols<cr>") map("<leader>lj", vim.diagnostic.goto_next) map("<leader>lk", vim.diagnostic.goto_prev) - map("]l", vim.diagnostic.goto_next) - map("[l", vim.diagnostic.goto_prev) + map("]d", vim.diagnostic.goto_next) + map("[d", vim.diagnostic.goto_prev) end, null_ls = function(_, _) map("<leader>li", "<cmd>LspInfo<cr>") map("<leader>lf", "<cmd>lua vim.lsp.buf.format {async = true}<cr>") map("<leader>lj", vim.diagnostic.goto_next) map("<leader>lk", vim.diagnostic.goto_prev) - map("]l", vim.diagnostic.goto_next) - map("[l", vim.diagnostic.goto_prev) + map("]d", vim.diagnostic.goto_next) + map("[d", vim.diagnostic.goto_prev) end, }