feat: basic vscode config
This commit is contained in:
parent
334c7e0cac
commit
9b9043858e
|
@ -108,7 +108,6 @@ in {
|
||||||
|
|
||||||
mpv
|
mpv
|
||||||
feh
|
feh
|
||||||
vscode
|
|
||||||
birdtray
|
birdtray
|
||||||
keepassxc
|
keepassxc
|
||||||
x2goclient
|
x2goclient
|
||||||
|
@ -244,6 +243,40 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs.vscode = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.vscodium;
|
||||||
|
extensions = with pkgs.vscode-extensions; [
|
||||||
|
bbenoist.nix
|
||||||
|
brettm12345.nixfmt-vscode
|
||||||
|
arrterian.nix-env-selector
|
||||||
|
|
||||||
|
eamodio.gitlens
|
||||||
|
github.copilot
|
||||||
|
|
||||||
|
editorconfig.editorconfig
|
||||||
|
yzhang.markdown-all-in-one
|
||||||
|
|
||||||
|
catppuccin.catppuccin-vsc
|
||||||
|
file-icons.file-icons
|
||||||
|
];
|
||||||
|
userSettings = {
|
||||||
|
"editor.fontFamily" = "'FiraCode Nerd Font Mono', 'Noto Color Emoji'";
|
||||||
|
"editor.fontLigatures" = true;
|
||||||
|
"editor.formatOnSave" = true;
|
||||||
|
"git.autofetch" = true;
|
||||||
|
"git.confirmSync" = false;
|
||||||
|
"git.enableSmartCommit" = true;
|
||||||
|
"terminal.integrated.fontFamily" =
|
||||||
|
"'FiraCode Nerd Font Mono', 'Noto Color Emoji'";
|
||||||
|
"window.menuBarVisibility" = "toggle";
|
||||||
|
"window.zoomLevel" = -0.25;
|
||||||
|
"workbench.colorTheme" = "Catppuccin Mocha";
|
||||||
|
"workbench.editor.untitled.hint" = "hidden";
|
||||||
|
"workbench.iconTheme" = "file-icons";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
wayland.windowManager.sway = {
|
wayland.windowManager.sway = {
|
||||||
enable = true;
|
enable = true;
|
||||||
config = rec {
|
config = rec {
|
||||||
|
|
Loading…
Reference in a new issue