Broke javascript out into it's own nix file for vscode and added deadnix

This commit is contained in:
2023-12-20 14:23:03 -04:00
parent 606a0c6f66
commit 44677b4411
3 changed files with 21 additions and 8 deletions

View File

@@ -0,0 +1,19 @@
{
inputs,
system,
...
}: {
programs.vscode = {
extensions = with inputs.nix-vscode-extensions.extensions.${system}; [
vscode-marketplace.christian-kohler.npm-intellisense
vscode-marketplace.esbenp.prettier-vscode
vscode-marketplace.johnpapa.vscode-peacock
vscode-marketplace.liamhammett.inline-parameters
vscode-marketplace.mgmcdermott.vscode-language-babel
vscode-marketplace.yatki.vscode-surround
];
userSettings = {
"javascript.editor.defaultFormatter" = "esbenp.prettier-vscode";
};
};
}