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