feat(nvf): add language support for stuff

This commit is contained in:
Mohammad Rafiq 2025-04-02 00:12:10 +08:00
parent f6e775bbd9
commit 4078359635
No known key found for this signature in database
2 changed files with 18 additions and 4 deletions

View file

View file

@ -8,12 +8,26 @@
enableTreesitter = true;
# Enable specific languages
clang.enable = true;
css.enable = true;
lua.enable = true;
markdown.enable = true;
markdown.extensions.render-markdown-nvim.enable = true;
nix.enable = true;
nix.format.type = "nixfmt";
rust.enable = true;
clang.enable = true;
lua.enable = true;
python.enable = true;
css.enable = true;
rust.enable = true;
rust.crates.enable = true;
ts.enable = true;
# Did not really check these
bash.enable = true;
csharp.enable = true;
go.enable = true;
haskell.enable = true;
html.enable = true;
java.enable = true;
sql.enable = true;
yaml.enable = true;
};
}