17 lines
272 B
Nix
17 lines
272 B
Nix
{ pkgs, ... }: {
|
|
programs.nixvim = {
|
|
plugins.treesitter = {
|
|
enable = true;
|
|
settings = {
|
|
auto_install = true;
|
|
highlight.enable = true;
|
|
indent.enable = true;
|
|
};
|
|
};
|
|
|
|
extraPackages = with pkgs; [
|
|
gcc
|
|
];
|
|
};
|
|
}
|