feat: update plugins, flake
build-flake / Build flake (push) Successful in 9m52s
build-flake / Release a new version (push) Successful in 13s
Sync flake lock with main nix-configuration project / Sync flake lock with main nix-configuration project (push) Successful in 7s
Sync flake lock with main nix-configuration project / Build flake (push) Successful in 9m9s
Sync flake lock with main nix-configuration project / Release a new version (push) Successful in 10s

This commit is contained in:
2026-04-16 18:14:54 +03:00
parent 03dfec1389
commit 6855a707d4
8 changed files with 104 additions and 40 deletions
+38 -6
View File
@@ -3,7 +3,6 @@
plugins = {
treesitter = {
enable = true;
settings = {
indent = {
enable = true;
@@ -17,12 +16,48 @@
grammarPackages = pkgs.vimPlugins.nvim-treesitter.allGrammars;
};
# Show sticky context window at top
treesitter-context = {
enable = false;
enable = true;
settings = {
max_lines = 5;
mode = "topline";
trim_scope = "outer";
};
};
# highlight scoped function
indent-blankline = {
enable = true;
settings = {
exclude = {
buftypes = [
"terminal"
"quickfix"
];
filetypes = [
""
"checkhealth"
"help"
"lspinfo"
"packer"
"TelescopePrompt"
"TelescopeResults"
];
};
indent = {
char = "";
};
scope = {
show_end = false;
show_exact_scope = true;
show_start = true;
};
};
};
treesitter-textobjects = {
enable = true;
enable = false;
settings = {
select = {
enable = true;
@@ -31,7 +66,4 @@
};
};
};
extraConfigLua = ''
local parser_config = require("nvim-treesitter.parsers").get_parser_configs()
'';
}