mirror of
https://github.com/Smaug123/nix-dotfiles
synced 2025-10-11 17:38:41 +00:00
VSCodium settings
This commit is contained in:
13
home.nix
13
home.nix
@@ -37,12 +37,25 @@
|
|||||||
pkgs.elan
|
pkgs.elan
|
||||||
pkgs.coreutils-prefixed
|
pkgs.coreutils-prefixed
|
||||||
pkgs.shellcheck
|
pkgs.shellcheck
|
||||||
|
pkgs.html-tidy
|
||||||
|
pkgs.hugo
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.vscode = {
|
programs.vscode = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.vscodium;
|
package = pkgs.vscodium;
|
||||||
extensions = import ./vscode-extensions.nix { inherit pkgs; };
|
extensions = import ./vscode-extensions.nix { inherit pkgs; };
|
||||||
|
userSettings = {
|
||||||
|
workbench.colorTheme = "Default High Contrast";
|
||||||
|
"files.Exclude" = {
|
||||||
|
"**/.git" = true;
|
||||||
|
"**/.DS_Store" = true;
|
||||||
|
"**/Thumbs.db" = true;
|
||||||
|
"**/*.olean" = true;
|
||||||
|
};
|
||||||
|
"git.path" = "${pkgs.git}/bin/git";
|
||||||
|
"update.mode" = "none";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.tmux = {
|
programs.tmux = {
|
||||||
|
Reference in New Issue
Block a user