2023-04-08 13:53:58 +00:00
|
|
|
{ pkgs, ... }: {
|
|
|
|
programs.vscode = {
|
|
|
|
enable = true;
|
2023-05-24 17:20:22 +00:00
|
|
|
package = (pkgs.vscode.override { isInsiders = true; }).overrideAttrs
|
|
|
|
(oldAttrs: {
|
|
|
|
src = (builtins.fetchTarball {
|
|
|
|
url =
|
|
|
|
"https://code.visualstudio.com/sha/download?build=insider&os=linux-x64";
|
|
|
|
sha256 = "1nvmnf4w2894v21zcmh1xzcxzzilc10qsqhz2i5hqvrn2vcw0ivv";
|
|
|
|
});
|
|
|
|
pname = "vscode-insiders";
|
|
|
|
version = "latest";
|
|
|
|
});
|
2023-04-08 13:53:58 +00:00
|
|
|
extensions = with pkgs.vscode-extensions; [
|
2023-05-07 21:30:38 +00:00
|
|
|
# github.copilot
|
2023-04-08 13:53:58 +00:00
|
|
|
eamodio.gitlens
|
2023-04-19 20:09:44 +00:00
|
|
|
editorconfig.editorconfig
|
|
|
|
ms-vsliveshare.vsliveshare
|
2023-04-08 13:53:58 +00:00
|
|
|
|
|
|
|
yzhang.markdown-all-in-one
|
2023-04-19 20:09:44 +00:00
|
|
|
tamasfe.even-better-toml
|
|
|
|
|
|
|
|
mkhl.direnv
|
2023-05-07 21:30:38 +00:00
|
|
|
jnoortheen.nix-ide
|
2023-04-08 13:53:58 +00:00
|
|
|
|
|
|
|
catppuccin.catppuccin-vsc
|
2023-05-07 21:30:38 +00:00
|
|
|
# catppuccin.catppuccin-vsc-icons
|
2023-04-08 13:53:58 +00:00
|
|
|
];
|
|
|
|
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";
|
2023-04-19 20:09:44 +00:00
|
|
|
"workbench.iconTheme" = "catppuccin-mocha";
|
2023-04-08 13:53:58 +00:00
|
|
|
"gitlens.telemetry.enabled" = false;
|
|
|
|
"telemetry.telemetryLevel" = "off";
|
|
|
|
"editor.inlineSuggest.enabled" = true;
|
|
|
|
"liveshare.presence" = true;
|
2023-05-19 18:37:19 +00:00
|
|
|
"github.copilot.enable" = {
|
|
|
|
"*" = true;
|
|
|
|
"yaml" = false;
|
|
|
|
"plaintext" = false;
|
|
|
|
"markdown" = true;
|
|
|
|
};
|
2023-05-07 21:30:38 +00:00
|
|
|
"nix.enableLanguageServer" = true;
|
|
|
|
"nix.serverPath" = "nil";
|
|
|
|
"nix.serverSettings"."nil"."formatting"."command" = [ "nixfmt" ];
|
2023-04-08 13:53:58 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|