2 files changed,
1 insertions(+),
10 deletions(-)
Author:
Oleksandr Smirnov
olexsmir@gmail.com
Committed at:
2025-02-28 13:28:45 +0200
Parent:
e52f51f
jump to
| M | lua/core/autocmd.lua |
| M | lua/plugins/lsp/attach.lua |
M
lua/core/autocmd.lua
@@ -22,15 +22,6 @@ command = "wincmd L",
}) u.aucmd("FileType", { - group = u.augroup "quickfix", - pattern = "qf", - callback = function() - u.map("n", "<C-n>", "<cmd>cnext<CR>", true) - u.map("n", "<C-p>", "<cmd>cprev<CR>", true) - end, -}) - -u.aucmd("FileType", { group = u.augroup "formatoptions", callback = function() vim.opt.formatoptions:remove {
M
lua/plugins/lsp/attach.lua
@@ -10,7 +10,7 @@ error "couldn't get an lsp server"
end if - client:supports_method(vim.lsp.protocol.Methods.textDocument_codeLens) + client.supports_method(vim.lsp.protocol.Methods.textDocument_codeLens) then vim.lsp.codelens.refresh { bufnr = bufnr } end