Created
September 1, 2022 21:23
-
-
Save matthewcrews/84422f432dc793fe35bb39218a01487f to your computer and use it in GitHub Desktop.
VS 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
{ | |
"workbench.colorTheme": "GDScript", | |
"editor.tokenColorCustomizations": { | |
"[Dracula Soft]": { | |
"textMateRules": [ | |
{ | |
"scope": "keyword.fsharp", | |
"settings": { | |
"foreground": "#65d6ff8b", | |
} | |
}, | |
{ | |
"scope": "keyword.control", | |
"settings": { | |
"foreground": "#ff52eeb2", | |
} | |
}, | |
{ | |
"scope": "record.fsharp", | |
"settings": { | |
"foreground": "#7adcff", | |
} | |
} | |
] | |
}, | |
"[GDScript]": { | |
"textMateRules": [ | |
{ | |
"scope": "keyword.control", | |
"settings": { | |
"foreground": "#C792EA" | |
} | |
}, | |
{ | |
"scope": ["string.quoted.double.fsharp"], | |
"settings": { | |
"foreground": "#fdf585" | |
} | |
}, | |
{ | |
"scope": ["constant.numeric.float.fsharp", "constant.numeric.integer.nativeint.fsharp"], | |
"settings": { | |
"foreground": "#fcba79" | |
} | |
} | |
] | |
} | |
}, | |
"editor.semanticTokenColorCustomizations": { | |
"[Dracula Soft]": { | |
"enabled": true, | |
"rules":{ | |
"namespace": "#61f4ff", | |
// "function": "#55ffa4", | |
// "type": { | |
// "foreground": "#ff94f4d2", | |
// "fontStyle": "" | |
// }, | |
// "struct": { | |
// "foreground": "#ffb9f8", | |
// "fontStyle": "" | |
// }, | |
// "property": "#f1f1f1", | |
"method": "#ff8080" | |
} | |
}, | |
"[Bearded Theme Arc EolStorm]": { | |
"enabled": true, | |
"rules":{ | |
// "namespace": "#61f4ff", | |
// "function": "#55ffa4", | |
// "type": { | |
// "foreground": "#ff94f4d2", | |
// "fontStyle": "" | |
// }, | |
// "struct": { | |
// "foreground": "#ffb9f8", | |
// "fontStyle": "" | |
// }, | |
// "property": "#f1f1f1", | |
// "method": "#ff8080" | |
"variable": "#f2b9f8" | |
} | |
}, | |
"[GDScript]": { | |
"enabled": true, | |
"rules":{ | |
"type": "#42FFC2", | |
"variable": "#ffffffd7", | |
"enumMember": "#42FFC2", | |
"member.mutable": "#FF5E8C", | |
"namespace": "#42FFC2", | |
"typeParameter": "#42FFC2", | |
"function": "#66E5FF", | |
"struct": "#42FFC2", | |
"property": "#ABC8FF", | |
} | |
} | |
}, | |
"files.autoSave": "afterDelay", | |
"files.autoSaveDelay": 500, | |
"git.enableSmartCommit": true, | |
"git.autofetch": true, | |
"diffEditor.ignoreTrimWhitespace": false, | |
"git.confirmSync": false, | |
"FSharp.inlayHints.typeAnnotations": false, | |
"editor.fontLigatures": true, | |
"editor.fontFamily": "Fira Code, 'Courier New', monospace" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment