Last active
January 30, 2024 15:17
-
-
Save molinav/7ce1340cfbf1bd5b25ba09f469536c8e to your computer and use it in GitHub Desktop.
Visual Studio Code settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// Launch properties. | |
"launch": { | |
"configurations": [ | |
], | |
"compounds": [ | |
] | |
}, | |
// Sync properties. | |
"settingsSync.ignoredSettings": [ | |
"terminal.integrated.fontFamily", | |
"terminal.integrated.fontSize" | |
], | |
// Telemetry properties. | |
"telemetry.telemetryLevel": | |
"off", | |
"redhat.telemetry.enabled": | |
false, | |
// Appearance properties. | |
"workbench.colorTheme": | |
"Visual Studio Dark", | |
"workbench.iconTheme": | |
"vscode-icons", | |
"vsicons.dontShowNewVersionMessage": | |
true, | |
// Workbench properties. | |
"workbench.editor.showIcons": | |
false, | |
"workbench.editor.empty.hint": | |
"hidden", | |
"workbench.startupEditor": | |
"newUntitledFile", | |
"workbench.tree.indent": | |
4, | |
"workbench.panel.defaultLocation": | |
"bottom", | |
"window.zoomLevel": | |
0, | |
// Explorer properties. | |
"explorer.confirmDelete": | |
false, | |
"explorer.confirmDragAndDrop": | |
false, | |
"explorer.sortOrderLexicographicOptions": | |
"unicode", | |
"security.workspace.trust.untrustedFiles": | |
"open", | |
// Editor properties. | |
"editor.fontFamily": | |
"JetBrains Mono", | |
"editor.fontLigatures": | |
true, | |
"editor.fontSize": | |
13, | |
"editor.minimap.enabled": | |
true, | |
"editor.wordWrap": | |
"off", | |
"editor.autoIndent": | |
"advanced", | |
"editor.renderWhitespace": | |
"boundary", | |
"editor.rulers": [ | |
72, | |
79, | |
99 | |
], | |
"editor.suggestSelection": | |
"first", | |
// Fix docstring color from recent VSCode update 1.79.0. | |
"editor.tokenColorCustomizations": { | |
"[Visual Studio Dark]": { | |
"textMateRules": [ | |
{ | |
"scope": "string.quoted.docstring", | |
"settings": { | |
"foreground": "#CE9178", | |
} | |
} | |
] | |
} | |
}, | |
"diffEditor.ignoreTrimWhitespace": | |
false, | |
"diffEditor.wordWrap": | |
"off", | |
// Terminal properties. | |
"terminal.integrated.fontFamily": | |
"Consolas", | |
"terminal.integrated.defaultProfile.windows": | |
"PowerShell", | |
"terminal.integrated.enableMultiLinePasteWarning": | |
false, | |
"terminal.integrated.profiles.linux": { | |
"bash": { | |
"path": "bash", | |
"icon": "terminal-bash" | |
}, | |
"zsh": { | |
"path": "zsh" | |
}, | |
"fish": { | |
"path": "fish" | |
}, | |
"tmux": { | |
"path": "tmux", | |
"icon": "terminal-tmux" | |
}, | |
"pwsh": { | |
"path": "pwsh", | |
"icon": "terminal-powershell" | |
} | |
}, | |
// Filetype-based properties. | |
"files.encoding": | |
"utf8", | |
"files.eol": | |
"\n", | |
"files.associations": { | |
".sh_*": "shellscript", | |
".pylintrc": "shellscript", | |
".pythonrc": "python", | |
".pyhistory": "python", | |
"pmm*": "shellscript" | |
}, | |
"fortran.linter.compiler": | |
"Disabled", | |
"fortran.provide.symbols": | |
"Both", | |
"git.openRepositoryInParentFolders": | |
"always", | |
"html.format.wrapLineLength": | |
0, | |
"[json]": { | |
"editor.suggest.insertMode": | |
"replace", | |
"editor.quickSuggestions": { | |
"strings": true | |
} | |
}, | |
"json.maxItemsComputed": | |
25000, | |
"[makefile]": { | |
"editor.tabSize": | |
8 | |
}, | |
"[markdown]": { | |
"editor.wordWrap": | |
"off", | |
"editor.quickSuggestions": | |
{ | |
"comments": "off", | |
"strings": "off", | |
"other": "off" | |
} | |
}, | |
"workbench.editorAssociations": { | |
"*.ipynb": "jupyter-notebook" | |
}, | |
"notebook.cellToolbarLocation": { | |
"default": "right", | |
"jupyter-notebook": "left" | |
}, | |
"yaml.customTags": [ | |
"!reference sequence" | |
], | |
// Git properties. | |
"gitHistory.editorTitleButtonOpenRepo": | |
true, | |
"gitHistory.pageSize": | |
250, | |
"gitlab.showPipelineUpdateNotifications": | |
true, | |
// CMake properties. | |
"cmake.configureOnOpen": | |
false, | |
// Python properties. | |
"python.languageServer": | |
"Jedi", | |
// Python PyLint configuration. | |
"pylint.cwd": | |
"${fileDirname}", | |
"pylint.severity": { | |
"fatal": | |
"Error", | |
"error": | |
"Error", | |
"warning": | |
"Warning", | |
"refactor": | |
"Information", | |
"convention": | |
"Information" | |
}, | |
// Python flake8 configuration. | |
"flake8.cwd": | |
"${fileDirname}", | |
// LaTeX Workshop properties. | |
"latex-workshop.latex.tools": [ | |
{ | |
"name": "latexmk", | |
"command": "latexmk", | |
"args": [ | |
"-shell-escape", | |
"-synctex=1", | |
"-interaction=nonstopmode", | |
"-file-line-error", | |
"-pdf", | |
"-outdir=%OUTDIR%", | |
"%DOC%" | |
], | |
"env": {} | |
} | |
], | |
"latex-workshop.view.pdf.viewer": | |
"tab" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment