all repos

init.lua @ 5e9a9c1

my nvim config
2 files changed, 1 insertions(+), 10 deletions(-)
refactor: removing some code that i dont care about
Author: Oleksandr Smirnov olexsmir@gmail.com
Committed at: 2025-02-28 13:28:45 +0200
Parent: e52f51f
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