infrastructure/home/applications/vscode.nix

85 lines
2.9 KiB
Nix
Raw Normal View History

2023-12-15 15:18:36 +00:00
{pkgs, ...}: {
2023-04-08 13:53:58 +00:00
programs.vscode = {
enable = true;
package = pkgs.vscode;
2023-04-08 13:53:58 +00:00
extensions = with pkgs.vscode-extensions; [
catppuccin.catppuccin-vsc
catppuccin.catppuccin-vsc-icons
2023-04-08 13:53:58 +00:00
eamodio.gitlens
2023-04-19 20:09:44 +00:00
editorconfig.editorconfig
github.copilot
github.copilot-chat
github.vscode-pull-request-github
jnoortheen.nix-ide
kamadorueda.alejandra
mkhl.direnv
seatonjiang.gitmoji-vscode
2023-04-19 20:09:44 +00:00
tamasfe.even-better-toml
yzhang.markdown-all-in-one
usernamehw.errorlens
charliermarsh.ruff
2023-04-08 13:53:58 +00:00
];
userSettings = {
2024-06-15 12:39:08 +00:00
"editor.formatOnSave" = true;
"editor.formatOnPaste" = true;
"files.insertFinalNewline" = true;
"files.trimTrailingWhitespace" = true;
2023-04-08 13:53:58 +00:00
"editor.fontFamily" = "'FiraCode Nerd Font Mono', 'Noto Color Emoji'";
"editor.fontLigatures" = true;
2024-06-15 12:39:08 +00:00
"editor.rulers" = [120];
2023-04-08 13:53:58 +00:00
"git.autofetch" = true;
"git.confirmSync" = false;
"git.enableSmartCommit" = true;
"gitmoji.showEmojiCode" = true;
2023-12-15 15:18:36 +00:00
"terminal.integrated.fontFamily" = "'FiraCode Nerd Font Mono', 'Noto Color Emoji'";
"terminal.integrated.scrollback" = 100000;
2023-04-08 13:53:58 +00:00
"window.menuBarVisibility" = "toggle";
2024-04-05 13:40:24 +00:00
"window.zoomLevel" = -0.75;
2023-04-08 13:53:58 +00:00
"workbench.colorTheme" = "Catppuccin Mocha";
2023-04-19 20:09:44 +00:00
"workbench.iconTheme" = "catppuccin-mocha";
2024-06-15 14:39:17 +00:00
"workbench.editor.empty.hint" = "hidden";
2023-04-08 13:53:58 +00:00
"gitlens.telemetry.enabled" = false;
"telemetry.telemetryLevel" = "off";
"editor.inlineSuggest.enabled" = true;
2023-12-15 15:18:36 +00:00
"github.copilot.enable" = {"markdown" = true;};
"github.copilot.editor.enableAutoCompletions" = true;
2023-05-07 21:30:38 +00:00
"nix.enableLanguageServer" = true;
"nix.serverPath" = "nil";
"julia.enableTelemetry" = false;
"julia.symbolCacheDownload" = true;
2023-12-15 15:18:36 +00:00
"terminal.integrated.commandsToSkipShell" = ["language-julia.interrupt"];
2024-03-31 14:17:33 +00:00
"diffEditor.ignoreTrimWhitespace" = false;
"remote.SSH.useExecServer" = false;
"python.analysis.typeCheckingMode" = "strict";
"python.analysis.inlayHints.functionReturnTypes" = true;
"python.analysis.inlayHints.pytestParameters" = true;
"python.analysis.inlayHints.callArgumentNames" = "partial";
"python.analysis.inlayHints.variableTypes" = true;
"[python]" = {
"editor.defaultFormatter" = "charliermarsh.ruff";
"editor.codeActionsOnSave" = {
"source.organizeImports" = "always";
"source.fixAll" = "always";
};
};
2024-06-15 12:39:08 +00:00
"files.exclude" = {
# defaults
"**/.git" = true;
"**/.svn" = true;
"**/.hg" = true;
"**/CVS" = true;
"**/.DS_Store" = true;
"**/Thumbs.db" = true;
# annoying
"**/__pycache__" = true;
"**/.mypy_cache" = true;
"**/.ruff_cache" = true;
"**/.pytest_cache" = true;
2024-06-15 12:39:08 +00:00
"**/*.egg-info" = true;
"**/.direnv" = true;
};
2023-04-08 13:53:58 +00:00
};
};
}