Skip to content

Instantly share code, notes, and snippets.

@GPrimola
Created May 6, 2022 13:22
Show Gist options
  • Select an option

  • Save GPrimola/e8fab4bf463abab6c68d6cfae78672e0 to your computer and use it in GitHub Desktop.

Select an option

Save GPrimola/e8fab4bf463abab6c68d6cfae78672e0 to your computer and use it in GitHub Desktop.
Visual Studio User Setting
{
"window.openFilesInNewWindow": "on",
"window.openFoldersInNewWindow": "on",
"extensions.confirmedUriHandlerExtensionIds": [],
"pgsql.connections": [
{
"host": "localhost",
"dbname": "finops",
"user": "postgres",
"password": "",
"emptyPasswordInput": false,
"port": "5432",
"profileName": "[local] finops"
}
],
"terminal.integrated.fontSize": 14,
"debug.console.fontSize": 14,
"codestream.email": "[email protected]",
"thunder-client.showActivityFromCollection": true,
// Based on Elixir formatter's style
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.associations": {
"*.erl": "erlang"
},
"erlangFormatter.formatter": "steamroller",
"elixirLS.mixEnv": "dev",
"elixirLS.mixTarget": "dev",
"elixirLS.fetchDeps": false,
"elixirLS.projectDir": ".",
"elixirLS.suggestSpecs": false,
"emmet.includeLanguages": {
"html-eex": "html"
},
"workbench.colorTheme": "One Dark Pro",
"workbench.colorCustomizations": {
"editor.selectionHighlightBorder": "#555"
},
"workbench.editorAssociations": {
"*.ipynb": "jupyter.notebook.ipynb"
},
"atomKeymap.promptV3Features": true,
"editor.fontFamily": "Menlo, Consolas, DejaVu Sans Mono, monospace",
"editor.fontSize": 14,
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.formatOnSave": false,
"editor.formatOnPaste": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnType": false, // Provides smart completion for "do" and "fn ->" blocks. Does not run the Elixir formatter.
"editor.wordBasedSuggestions": false,
"editor.trimAutoWhitespace": false,
"editor.tokenColorCustomizations": {
"[One Dark Pro]": {
"textMateRules": [
{
"scope": [
"source.elixir constant.other.symbol.elixir"
],
"settings": {
"foreground": "#56b6c2"
}
},
{
"scope": [
"source.elixir punctuation.definition.constant.elixir"
],
"settings": {
"foreground": "#61afef"
}
},
{
"scope": [
"source.elixir keyword.operator.assignment.elixir"
],
"settings": {
"foreground": "#d19a66"
}
},
{
"scope": [
"source.elixir punctuation.separator.object.elixir"
],
"settings": {
"foreground": "#d19a66"
}
},
{
"scope": [
"source.elixir constant.language.elixir"
],
"settings": {
"foreground": "#61afef"
}
},
{
"scope": [
"source.elixir keyword.operator.other.elixir"
],
"settings": {
"foreground": "#d19a66"
}
},
{
"scope": [
"source.elixir parameter.variable.function.elixir"
],
"settings": {
"foreground": "#d19a66"
}
},
{
"scope": [
"source.elixir punctuation.separator.method.elixir"
],
"settings": {
"foreground": "#d19a66"
}
},
{
"scope": [
"source.elixir keyword.operator.comparison.elixir"
],
"settings": {
"foreground": "#d19a66"
}
},
{
"scope": [
"source.elixir constant.numeric.elixir"
],
"settings": {
"foreground": "#61afef"
}
},
{
"scope": [
"source.elixir keyword.operator.arithmetic.elixir"
],
"settings": {
"foreground": "#d19a66"
}
},
{
"scope": [
"source.elixir punctuation.section.embedded.elixir"
],
"settings": {
"foreground": "#e06c75"
}
},
{
"scope": [
"source.elixir keyword.other.special-method.elixir"
],
"settings": {
"foreground": "#e06c75"
}
},
{
"scope": [
"source.elixir keyword.operator.logical.elixir"
],
"settings": {
"foreground": "#d19a66"
}
},
{
"scope": [
"source.elixir keyword.operator.bitwise.elixir"
],
"settings": {
"foreground": "#d19a66"
}
},
{
"scope": [
"source.elixir punctuation.definition.string.begin.elixir"
],
"settings": {
"foreground": "#98C37B"
}
},
{
"scope": [
"source.elixir punctuation.definition.string.end.elixir"
],
"settings": {
"foreground": "#98C37B"
}
},
{
"scope": [
"source.elixir support.function.variable.quoted.single.elixir"
],
"settings": {
"foreground": "#98C37B"
}
},
{
"scope": [
"source.elixir punctuation.definition.variable.elixir"
],
"settings": {
"foreground": "#e06c75" // "#c678dd"
}
},
{
"scope": [
"source.elixir variable.other.readwrite.module.elixir"
],
"settings": {
"foreground": "#e06c75"
}
},
{
"scope": [
"source.elixir variable.other.anonymous.elixir"
],
"settings": {
"foreground": "#c678dd"
}
}
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment