mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-07-02 22:46:00 +00:00
~
Signed-off-by: roxwize <rae@roxwize.xyz>
This commit is contained in:
parent
00dea0e846
commit
0c5c03049b
6 changed files with 43 additions and 21 deletions
37
nixos/home/vscode.nix
Normal file
37
nixos/home/vscode.nix
Normal file
|
@ -0,0 +1,37 @@
|
|||
{ pkgs, ... }: {
|
||||
programs.vscode = {
|
||||
enable = true;
|
||||
package = pkgs.vscodium;
|
||||
enableUpdateCheck = false;
|
||||
enableExtensionUpdateCheck = false;
|
||||
extensions = with pkgs.vscode-extensions; [
|
||||
catppuccin.catppuccin-vsc
|
||||
catppuccin.catppuccin-vsc-icons
|
||||
editorconfig.editorconfig
|
||||
esbenp.prettier-vscode
|
||||
jnoortheen.nix-ide
|
||||
llvm-vs-code-extensions.vscode-clangd
|
||||
mesonbuild.mesonbuild
|
||||
rust-lang.rust-analyzer
|
||||
skellock.just
|
||||
wakatime.vscode-wakatime
|
||||
];
|
||||
userSettings = {
|
||||
"editor.fontFamily" = "'Fira Code Light', monospace";
|
||||
# "editor.fontLigatures" = true;
|
||||
"editor.formatOnSave" = false;
|
||||
"editor.indentSize" = 4;
|
||||
"editor.tabSize" = 4;
|
||||
"explorer.confirmDelete" = false;
|
||||
"explorer.confirmDragAndDrop" = false;
|
||||
"mesonbuild.buildFolder" = "build";
|
||||
"prettier.tabWidth" = 4;
|
||||
"prettier.trailingComma" = "none";
|
||||
"prettier.singleAttributePerLine" = false;
|
||||
"prettier.useEditorConfig" = true;
|
||||
"telemetry.telemetryLevel" = "off";
|
||||
"workbench.colorTheme" = "Catppuccin Frappé";
|
||||
"workbench.iconTheme" = "catppuccin-frappe";
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue