Last active
August 2, 2020 12:04
-
-
Save rapgru/cfc578c2d54b54e91d62b8f00ba5a9fb to your computer and use it in GitHub Desktop.
VS Code Configuration
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
{ | |
"extensions": [ | |
"aaron-bond.better-comments", | |
"mrmlnc.vscode-duplicate", | |
"pkief.material-icon-theme", | |
"miguelsolorio.min-theme", | |
"sdras.night-owl", | |
"ms-vscode.powershell", | |
"mechatroner.rainbow-csv", | |
"ms-vscode-remote.remote-ssh", | |
"ms-vscode-remote.remote-ssh-edit", | |
"ms-vscode-remote.remote-wsl", | |
"rapgru.themeswitch", | |
"marcostazi.vs-code-vagrantfile", | |
"visualstudioexptteam.vscodeintellicode", | |
"shyykoserhiy.vscode-spotify", | |
"ms-vscode-remote.remote-containers" | |
] | |
} |
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
{ | |
/* == Workbench == */ | |
"workbench.settings.useSplitJSON": true, | |
"workbench.settings.openDefaultKeybindings": true, | |
"workbench.colorTheme": "Min Light", | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.editor.limit.enabled": true, | |
"workbench.editor.limit.perEditorGroup": true, | |
"workbench.editor.limit.value": 3, | |
/* == Editor == */ | |
"editor.suggestSelection": "first", | |
"editor.fontFamily": "Fira Code, Consolas, 'Courier New', monospace", | |
"editor.fontLigatures": true, | |
"editor.cursorBlinking": "phase", | |
"editor.cursorStyle": "line", | |
"editor.tabSize": 2, | |
"editor.useTabStops": false, | |
"editor.minimap.enabled": false, | |
"editor.lineNumbers": "relative", | |
"editor.rulers": [ | |
{ | |
"column": 80, | |
"color": "#00ff00" | |
}, | |
100, // <- a ruler in the default color or as customized at column 0 | |
], | |
/* == Explorer == */ | |
"explorer.openEditors.visible": 0, | |
/* == Files == */ | |
"files.eol": "\n", | |
"files.autoSaveDelay": 1000, | |
"files.autoSave": "afterDelay", | |
/* == NPM == */ | |
"npm.enableScriptExplorer": true, | |
/* == Git == */ | |
"git.enableSmartCommit": true, | |
/* == Window == */ | |
"window.zoomLevel": 0, | |
/* == Terminal == */ | |
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\wsl.exe", | |
/* == Extensions == */ | |
/* -- Remote -- */ | |
"remote.SSH.remotePlatform": { | |
"website-default": "linux", | |
"texspace-default": "linux", | |
"dg-default": "linux", | |
"haskell-default": "linux" | |
}, | |
/* -- IntelliCode -- */ | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
/* -- ThemeSwitch -- */ | |
"themeswitch.directives": [ | |
{ | |
"time": "20:00", | |
"theme": "Min Dark" | |
}, | |
{ | |
"time": "07:00", | |
"theme": "Min Light" | |
} | |
], | |
/* -- Latex -- */ | |
"latex-workshop.view.pdf.viewer": "tab", | |
"ltex.language": "de-AT", | |
"vim.easymotion": true, | |
"vim.easymotionMarkerBackgroundColor": "#232323", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment