9 lines
154 B
Nix
9 lines
154 B
Nix
{
|
|
programs.nixvim.globalOpts = {
|
|
expandtab = true;
|
|
shiftwidth = 2;
|
|
foldmethod = "expr";
|
|
foldexpr = "nvim_treesitter#foldexpr()";
|
|
};
|
|
}
|