Last active
April 14, 2021 02:20
-
-
Save OliverBalfour/14e3547318c87ddc24d9b7bd2043c79d to your computer and use it in GitHub Desktop.
vscode_settings.json
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
{ | |
"git.autofetch": true, | |
"editor.acceptSuggestionOnCommitCharacter": false, | |
"workbench.colorTheme": "Visual Studio Dark", | |
"atomKeymap.promptV3Features": true, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.formatOnPaste": true, | |
"workbench.startupEditor": "newUntitledFile", | |
"debug.javascript.debugByLinkOptions": null, | |
"terminal.integrated.automationShell.linux": "", | |
"terminal.integrated.env.linux": { | |
"LC_ALL": "en_AU.UTF-8" | |
}, | |
"terminal.integrated.fontFamily": "MesloLGS NF", | |
"colorize.colorized_colors": [ | |
"BROWSERS_COLORS", | |
"HEXA", | |
"RGB", | |
"HSL" | |
], | |
"colorize.languages": [ | |
"javascript", | |
"css", | |
"html", | |
"md", | |
"markdown" | |
], | |
"colorize.hide_current_line_decorations": false, | |
"colorize.enable_search_variables": false, | |
"workbench.tree.indent": 20, | |
"workbench.activityBar.visible": false, | |
"editor.rulers": [ | |
80, | |
120 | |
], | |
"[haskell]": { | |
"editor.defaultFormatter": "haskell.haskell" | |
}, | |
"gitlens.hovers.currentLine.over": "line", | |
"gitlens.currentLine.enabled": false, | |
"files.exclude": { | |
"**/node_modules": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment