devenv bun language

This commit is contained in:
2026-06-26 16:42:33 -05:00
parent 281f88c6b3
commit 945d0986ab
+20 -10
View File
@@ -5,16 +5,26 @@
packages = [ pkgs.sqlite ];
languages.rust = {
enable = true;
lsp.enable = true;
components = [
"rustc"
"cargo"
"clippy"
"rustfmt"
"rust-analyzer"
];
languages = {
javascript = {
enable = true;
lsp.enable = true;
bun = {
enable = true;
install.enable = true;
};
};
rust = {
enable = true;
lsp.enable = true;
components = [
"rustc"
"cargo"
"clippy"
"rustfmt"
"rust-analyzer"
];
};
};
git-hooks.hooks = {