diff --git a/users/max/home/codium.nix b/users/max/home/codium.nix index 09384a0..545fd32 100644 --- a/users/max/home/codium.nix +++ b/users/max/home/codium.nix @@ -6,8 +6,21 @@ package = pkgs.vscodium; extensions = with inputs.nix-vsx.packages.x86_64-linux; [ arrterian_nix-env-selector + asvetliakov_vscode-neovim + GitLab_gitlab-workflow jnoortheen_nix-ide + ms-python_python + ms-vscode_makefile-tools rafaelmardojai_vscode-gnome-theme ]; + + userSettings = { + # general + "update.mode" = "none"; + "files.autoSave" = "onFocusChange"; + "workbench.colorTheme" = "GNOME dark"; + "vscode-neovim.neovimExecutablePaths.linux" = "/run/current-system/sw/bin/nvim"; + "git.confirmSync" = false; + }; }; }