Last active
April 26, 2018 18:05
-
-
Save Bara/b448448a333eba002a348885edf1c15a to your computer and use it in GitHub Desktop.
My settings for sourcepawn highlighting and autocompletion in combination with 2 extensions and 1 theme
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
{ | |
"files.autoSave": "onFocusChange", | |
"editor.tabSize": 4, | |
"editor.insertSpaces": true, | |
"editor.detectIndentation": true, | |
// https://marketplace.visualstudio.com/items?itemName=robertohuertasm.vscode-icons | |
"workbench.iconTheme": "vscode-icons", | |
"vsicons.associations.files": [ | |
{ | |
"icon": "polymer", | |
"extensions": [ | |
"sp" | |
], | |
"format": "svg" | |
}, | |
{ | |
"icon": "flow", | |
"extensions": [ | |
"inc" | |
], | |
"format": "svg" | |
}, | |
{ | |
"icon": "binary", | |
"extensions": [ | |
"smx" | |
], | |
"format": "svg" | |
} | |
], | |
"workbench.colorTheme": "One Dark Pro", | |
"git.autofetch": true | |
// https://marketplace.visualstudio.com/items?itemName=akamud.vscode-theme-onedark | |
// As theme for visual studio code | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment