Skip to content

Instantly share code, notes, and snippets.

@tanvirraj
Created September 18, 2022 11:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tanvirraj/e4619ab7cc74f9dd21117e84963e5022 to your computer and use it in GitHub Desktop.
Save tanvirraj/e4619ab7cc74f9dd21117e84963e5022 to your computer and use it in GitHub Desktop.
{
//"editor.fontFamily": "Dank mono",
"editor.fontFamily": "JetBrains Mono",
"editor.fontSize": 13,
//"editor.fontFamily": "BerkeleyMonoTrial-Regular",
"editor.letterSpacing": 0.5,
//monalisa only
//"editor.fontFamily": "MonoLisa, Menlo, Monaco, 'Courier New', monospace",
//"editor.lineHeight": 0,
"editor.fontLigatures": true,
"editor.fontWeight": "300",
//"editor.letterSpacing": 0.8,
//common
// "editor.fontSize": 13,
"editor.lineHeight": 21,
"editor.renderWhitespace": "none",
//"editor.renderWhitespace": "selection",
"editor.minimap.renderCharacters": false,
"editor.occurrencesHighlight": true,
"editor.overviewRulerBorder": true,
"editor.renderLineHighlight": "none",
"editor.renderControlCharacters": true,
"editor.minimap.enabled": false,
"[javascript]": {
"editor.formatOnSave": true
},
"tslint.autoFixOnSave": true,
"prettier.eslint": true,
"javascript.validate.enable": false,
"terminal.integrated.fontSize": 15,
"files.trimTrailingWhitespace": true,
"editor.cursorWidth": 4,
"editor.cursorBlinking": "smooth",
"editor.rulers": [80, 100, 120],
"workbench.editor.tabCloseButton": "off",
"html.format.enable": true,
"diffEditor.ignoreTrimWhitespace": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"terminal.external.osxExec": "iTerm.app",
"bracketPairColorizer.forceIterationColorCycle": true,
"files.exclude": {
"**/.DS_Store": true,
"**/.git": true,
"**/.hg": true,
"**/.svn": true,
"**/CVS": true,
"**/node_modules": false
},
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
//following will be in italic (=FlottFlott)
"comment",
"entity.name.type.class", //class names
"keyword", //import, export, return…
"constant", //String, Number, Boolean…, this, super
"storage.modifier", //static keyword
"storage.type.class.js" //class keyword
],
"settings": {
"fontStyle": "italic"
}
},
{
"scope": [
//following will be excluded from italics (VSCode has some defaults for italics)
"invalid",
"keyword.operator",
"constant.numeric.css",
"keyword.other.unit.px.css",
"constant.numeric.decimal.js",
"constant.numeric.json"
],
"settings": {
"fontStyle": ""
}
}
]
},
"workbench.editor.showIcons": false,
"git.enableSmartCommit": true,
"typescript.updateImportsOnFileMove.enabled": "always",
"workbench.colorCustomizations": {
"[Night Owl]": {
"sideBar.border": "#102a44",
"editor.background": "#061626"
//"activityBar.background": "#000C1D",
//"activityBar.border": "#102a44",
//"editorGroup.border": "#102a44",
// "sideBar.background": "#001122"
//"sideBar.border": "#102a44"
//"sideBar.foreground": "#8BADC1"
}
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.tslint": true
},
"eslint.alwaysShowStatus": true,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"workbench.colorTheme": "Cobalt2",
"editor.detectIndentation": true,
"editor.cursorSmoothCaretAnimation": true,
"editor.smoothScrolling": true,
"editor.formatOnSave": true,
"[go]": {
"editor.insertSpaces": false,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
},
"editor.linkedEditing": true,
"breadcrumbs.enabled": false,
"editor.bracketPairColorization.enabled": true,
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 100,
"terminal.integrated.env.osx": {
"FIG_NEW_SESSION": "1"
},
"security.workspace.trust.untrustedFiles": "open",
"workbench.tree.indent": 9,
"editor.unicodeHighlight.ambiguousCharacters": false,
"window.zoomLevel": 1,
"editor.guides.indentation": false,
"workbench.iconTheme": "vscode-great-icons",
"extensions.ignoreRecommendations": true,
"workbench.statusBar.visible": false,
"githubPullRequests.pullBranch": "never"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment