añade extensiones de vscode

This commit is contained in:
Fabián Montero 2022-10-28 18:52:24 -06:00
parent 12b62edab5
commit 1df252b427
2 changed files with 27 additions and 21 deletions

View file

@ -14,7 +14,6 @@ with lib;
ms-toolsai.jupyter
ms-vscode.cpptools
]) ++ (with pkgs.local.vscode-extensions; [
laurenttreguier.vscode-simple-icons
rust-lang.rust
sirtori.indenticator
toasty-technologies.octave
@ -29,12 +28,13 @@ with lib;
ZixuanWang.linkerscript
hediet.vscode-drawio
aaron-bond.better-comments
johnpapa.vscode-peacock
streetsidesoftware.code-spell-checker
wayou.vscode-todo-highlight
xaver.clang-format
yzhang.markdown-all-in-one
christian-kohler.path-intellisense
sukumo28.wav-preview
oderwat.indent-rainbow
]);
userSettings = {
"files.autoSave" = "onFocusChange";
@ -54,6 +54,13 @@ with lib;
"editor.autoClosingOvertype" = "never";
"editor.autoClosingBrackets" = "never";
"editor.autoClosingQuotes" = "never";
"indentRainbow.colors" = [
"rgba(255,255,64,0.2)"
"rgba(127,255,127,0.2)"
"rgba(255,127,255,0.2)"
"rgba(79,236,236,0.2)"
];
"hediet.vscode-drawio.theme" = "dark";
};
};
}