Skip to content

Instantly share code, notes, and snippets.

@cgiacomi
Created September 12, 2023 08:01
Show Gist options
  • Save cgiacomi/230de5ad0ec44763b869b102d76c4f60 to your computer and use it in GitHub Desktop.
Save cgiacomi/230de5ad0ec44763b869b102d76c4f60 to your computer and use it in GitHub Desktop.
viscose settings
{
"files.exclude": {
"**/__pycache__": true
},
"editor.fontFamily": "JetBrainsMono NF",
"editor.fontLigatures": true,
"editor.fontSize": 14,
"editor.minimap.enabled": true,
"editor.rulers": [
80,
120
],
// "editor.renderWhitespace": "all",
"editor.renderControlCharacters": true,
"editor.tokenColorCustomizations": {
"textMateRules": [
{ // Comments default
"name": "Comment",
"scope": [
"comment",
"comment.block",
"comment.block.documentation",
"comment.line",
"comment.line.double-slash",
"punctuation.definition.comment",
],
"settings": {
"fontStyle": "italic",
// "fontStyle": "italic underline",
// "fontStyle": "italic bold underline",
}
},
{ // GO lang
"name": "Other",
"scope": [
"keyword.function.go",
"keyword.control.go",
"keyword.var.go",
"keyword.import.go"
],
"settings": {
"fontStyle": "italic",
// "fontStyle": "italic underline",
// "fontStyle": "italic bold underline",
}
},
{ // TS
"name": "Other",
"scope": [
"keyword.control.import.ts",
"keyword.control.from.ts",
"keyword.control.trycatch.ts",
"keyword.control.conditional.ts",
"storage.type.ts",
"keyword.control.flow.ts",
"keyword.control.export.ts"
],
"settings": {
"fontStyle": "italic",
// "fontStyle": "italic underline",
// "fontStyle": "italic bold underline",
}
},
{ // Python
"name": "Other",
"scope": [
"string.quoted.docstring.multi.python",
"storage.type.function.python",
"keyword.control.import.python",
"keyword.control.flow.python"
],
"settings": {
"fontStyle": "italic",
// "fontStyle": "italic underline",
// "fontStyle": "italic bold underline",
}
},
{ //HTML, JS
"name": "Other",
"scope": [
"entity.other.attribute-name.html",
],
"settings": {
"fontStyle": "italic"
}
},
{ //JS
"name": "Other",
"scope": [
"entity.name.function.js",
"entity.other.attribute-name.js",
"variable.other.object.js"
],
"settings": {
"fontStyle": "italic"
}
}
]
},
"workbench.editor.enablePreview": false,
"workbench.iconTheme": "sweet-vscode-icons",
"workbench.tree.renderIndentGuides": "none",
"workbench.colorCustomizations": {
// "titleBar.activeBackground": "#1B1D24",
// "editor.background": "#2F353F",
// "editorGutter.background": "#2F353F",
// "breadcrumb.background": "#2F353F",
// "editorGroup.border": "#1B1D24",
// "editorGroupHeader.tabsBackground":"#252932",
// "editorGroupHeader.tabsBorder": "#2F353F",
// "tab.activeBackground": "#2F353F",
// "tab.activeBorderTop": "#6289EB",
// "activityBar.activeBorder": "#6289EB",
// "activityBar.activeBackground": "#2F353F",
// "tab.border": "#1B1D24",
// "tab.inactiveBackground": "#252932",
// "activityBar.background": "#252932",
// "activityBar.foreground": "#9BA4B4",
// "activityBar.border": "#1B1D24",
// "sideBar.background": "#252932",
// "sideBarSectionHeader.background": "#252932",
// "sideBar.border": "#1B1D24",
// "sideBar.foreground": "#9BA4B4",
// "list.activeSelectionBackground":"#6289EB",
// "list.activeSelectionForeground":"#D9DEE8",
// "list.inactiveSelectionBackground": "#3E4552",
// "panel.background": "#252932",
// "panel.border": "#1B1D24",
// "panelTitle.activeForeground": "#6289EB",
// "badge.background": "#6289EB",
// "badge.foreground": "#fff",
// "terminal.background": "#252932",
// "statusBar.background": "#252932",
// "statusBar.foreground": "#9BA4B4",
// "statusBar.border": "#1B1D24",
// "activityBarBadge.background": "#6289EB",
// "activityBarBadge.foreground": "#fff"
},
"explorer.openEditors.visible": 0,
"explorer.compactFolders": false,
"cSpell.language": "en,en-US",
"cSpell.userWords": [
"Arghh",
"Arial",
"Aventador",
"bcrypt",
"boto",
"bson",
"cacheable",
"Chakra",
"CHGI",
"cmds",
"cors",
"couchdb",
"dbpool",
"degress",
"dotenv",
"dtos",
"Fontawesome",
"Fubar",
"getenv",
"Giacomi",
"gofiber",
"gorm",
"Hackernoon",
"Hashi",
"Helvetica",
"hhid",
"Hotboard",
"IMDB",
"ingester",
"jinzhu",
"Koda",
"kommune",
"komune",
"liinkz",
"microservice",
"microservices",
"middlewares",
"mixtv",
"mkdir",
"mongodb",
"MSTVHD",
"Navn",
"nodered",
"nuuday",
"OSSI",
"pino",
"provisionings",
"pylint",
"randstr",
"requestid",
"sess",
"soapenv",
"strftime",
"strptime",
"struct",
"submenu",
"svod",
"taskid",
"TVID",
"tvod",
"unittests",
"WORKDIR",
"WWDC"
],
"todo-tree.highlights.defaultHighlight": {
"icon": "alert",
"type": "text",
"foreground": "white",
"background": "orange",
"iconColour": "orange",
},
"todo-tree.highlights.customHighlight": {
"TODO": {
"gutterIcon": true
},
"FIXME": {
"background": "red",
"iconColour": "red",
"gutterIcon": true
}
},
"security.workspace.trust.untrustedFiles": "open",
"gitlens.mode.active": "zen",
"go.toolsManagement.autoUpdate": true,
"workbench.colorTheme": "Andromeda"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment