qol(nixvim@modules): bytecompiled and new keybind for diagnostics

This commit is contained in:
2025-10-20 11:11:34 +00:00
parent 8fef861bfb
commit 2903440a12

View File

@@ -29,6 +29,11 @@ in
enable = true; enable = true;
defaultEditor = true; defaultEditor = true;
colorschemes.tokyonight.enable = true; colorschemes.tokyonight.enable = true;
performance.byteCompileLua = {
enable = true;
plugins = true;
nvimRuntime = true;
};
plugins = { plugins = {
lsp-status.enable = true; lsp-status.enable = true;
lsp = { lsp = {
@@ -182,6 +187,13 @@ in
silent = true; silent = true;
}; };
} }
{
action = "<cmd>Trouble diagnostics toggle<cr>";
key = "<leader>fd";
options = {
silent = true;
};
}
]; ];
}; };
} }