update flakes

This commit is contained in:
EdenQwQ 2026-02-21 18:32:48 +08:00
parent 64c56aa41d
commit e4b29f3333
9 changed files with 114 additions and 111 deletions

View file

@ -2,7 +2,7 @@
{
home.packages = with pkgs; [
alejandra
nixfmt-rfc-style
nixfmt
texlab
nodePackages.prettier
antigravity

View file

@ -19,10 +19,11 @@
enable = true;
defaultEditor = true;
performance.combinePlugins = {
enable = true;
enable = false;
standalonePlugins = [
"copilot.lua"
"nvim-treesitter"
"hmts.nvim"
];
};
globals = {

View file

@ -2,29 +2,31 @@
{
programs.nixvim.plugins.treesitter = {
enable = true;
settings.auto_install = true;
settings.ensure_installed = [
"diff"
"bash"
"fish"
"python"
"yaml"
"lua"
"json"
"nix"
"regex"
"toml"
"vim"
"markdown"
"rust"
"jsonc"
"glsl"
"css"
"hyprlang"
"r"
];
settings.highlight.enable = true;
settings.indent.enable = true;
settings = {
auto_install = true;
ensure_installed = [
"diff"
"bash"
"fish"
"python"
"yaml"
"lua"
"json"
"nix"
"regex"
"toml"
"vim"
"markdown"
"rust"
"jsonc"
"glsl"
"css"
"hyprlang"
"r"
];
highlight.enable = true;
indent.enable = true;
};
};
programs.nixvim.plugins.hmts.enable = true;
programs.nixvim.plugins.rainbow-delimiters.enable = true;