Massive nvim refactor, migrated from nvim-lspconfig to NVIM 0.11 lsp/*

also migrated most LSP clients to nix rather than mason
This commit is contained in:
2025-04-27 14:12:18 +03:00
parent 49be66e67a
commit 21107f040b
34 changed files with 863 additions and 335 deletions

View File

@@ -25,6 +25,11 @@ return {
return {
-- execution_message = { enabled = false }, removed
condition = function(buf)
-- TODO: oil issues might be bcz of autosaving?
-- Maybe I should exclude Oil ft?
-- Might be unrelated tho
-- Oil error is "cannot save, action already in progress"
-- Save only if the buffer is not a "special buffer"
return vim.fn.getbufvar(buf, '&buftype') == ''
end,