🔧 (home) add some more default vscode settings

This commit is contained in:
Laureηt 2024-06-16 16:11:09 +02:00
parent 25c9a2a358
commit 5cc5af2b08
Signed by: Laurent
SSH key fingerprint: SHA256:pb5NrYg80So5z9hmqQFPmp//sgr+DFeJkKhmGyU2NLk

View file

@ -33,6 +33,7 @@
"git.enableSmartCommit" = true; "git.enableSmartCommit" = true;
"gitmoji.showEmojiCode" = true; "gitmoji.showEmojiCode" = true;
"terminal.integrated.fontFamily" = "'FiraCode Nerd Font Mono', 'Noto Color Emoji'"; "terminal.integrated.fontFamily" = "'FiraCode Nerd Font Mono', 'Noto Color Emoji'";
"terminal.integrated.scrollback" = 100000;
"window.menuBarVisibility" = "toggle"; "window.menuBarVisibility" = "toggle";
"window.zoomLevel" = -0.75; "window.zoomLevel" = -0.75;
"workbench.colorTheme" = "Catppuccin Mocha"; "workbench.colorTheme" = "Catppuccin Mocha";
@ -52,6 +53,10 @@
"diffEditor.ignoreTrimWhitespace" = false; "diffEditor.ignoreTrimWhitespace" = false;
"remote.SSH.useExecServer" = false; "remote.SSH.useExecServer" = false;
"python.analysis.typeCheckingMode" = "strict"; "python.analysis.typeCheckingMode" = "strict";
"python.analysis.inlayHints.functionReturnTypes" = true;
"python.analysis.inlayHints.pytestParameters" = true;
"python.analysis.inlayHints.callArgumentNames" = "partial";
"python.analysis.inlayHints.variableTypes" = true;
"files.exclude" = { "files.exclude" = {
# defaults # defaults
"**/.git" = true; "**/.git" = true;
@ -64,6 +69,7 @@
"**/__pycache__" = true; "**/__pycache__" = true;
"**/.mypy_cache" = true; "**/.mypy_cache" = true;
"**/.ruff_cache" = true; "**/.ruff_cache" = true;
"**/.pytest_cache" = true;
"**/*.egg-info" = true; "**/*.egg-info" = true;
"**/.direnv" = true; "**/.direnv" = true;
}; };