Skip to content

Instantly share code, notes, and snippets.

@nirnejak
Last active June 6, 2023 19:04
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 nirnejak/3773427ef028723130d2e6d0abdab8e2 to your computer and use it in GitHub Desktop.
Save nirnejak/3773427ef028723130d2e6d0abdab8e2 to your computer and use it in GitHub Desktop.
Jitendra Nirnejak's Editor Configuration
{
"editor.tabSize": 2,
"editor.fontSize": 14,
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.fontLigatures": true,
"editor.fontFamily": "JetBrains Mono, monospace",
"editor.fontWeight": "400",
"editor.suggest.preview": true,
"editor.suggestSelection": "first",
"editor.inlineSuggest.enabled": true,
"editor.cursorBlinking": "smooth",
"editor.cursorSmoothCaretAnimation": "on",
"editor.minimap.enabled": false,
"editor.minimap.renderCharacters": false,
"editor.unicodeHighlight.ambiguousCharacters": false,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll": true
},
"terminal.external.osxExec": "iTerm.app",
"terminal.integrated.fontSize": 14,
"terminal.integrated.lineHeight": 1.23,
"terminal.integrated.tabs.enabled": false,
"terminal.integrated.gpuAcceleration": "on",
"terminal.integrated.fontFamily": "JetBrainsMono Nerd Font, JetBrains Mono, monospace",
"terminal.integrated.fontWeight": "200",
"terminal.integrated.autoReplies": {
"[oh-my-zsh] Would you like to update? [Y/n]": "Y\r"
},
"workbench.colorTheme": "GitHub Dark",
"workbench.iconTheme": "material-icon-theme",
"workbench.editor.untitled.hint": "hidden",
"workbench.startupEditor": "none",
"workbench.layoutControl.enabled": false,
"explorer.compactFolders": false,
"notebook.lineNumbers": "on",
"git.autofetch": true,
"git.branchProtection": ["master", "main"],
"material-icon-theme.activeIconPack": "react",
"material-icon-theme.folders.theme": "specific",
"security.workspace.trust.untrustedFiles": "open",
"files.associations": {
"*.jsx": "javascriptreact",
"*.tsx": "typescriptreact"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"typescript": "typescriptreact",
"vue": "html",
"vue-html": "html"
},
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"vue"
],
"svg.preview.mode": "svg",
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.updateImportsOnFileMove.enabled": "always",
// "[javascript, javascriptreact, typescript, typescriptreact]": {
// "editor.defaultFormatter": "vscode.typescript-language-features"
// },
"[prisma]": {
"editor.defaultFormatter": "Prisma.prisma"
},
// "go.lintOnSave": "package",
// "go.formatTool": "goimports",
// "go.autocompleteUnimportedPackages": true,
// "go.testFlags": ["-v"],
// "gopls": {
// "ui.semanticTokens": true
// },
// "[go]": {
// "editor.defaultFormatter": "golang.go",
// "editor.codeActionsOnSave": {
// "source.organizeImports": true
// }
// },
"todohighlight.keywords": [
{
"text": "INFO:",
"color": "#FFFFFF",
"backgroundColor": "#189BF8",
"isWholeLine": false
}
],
"cSpell.userWords": ["Jitendra", "Nirnejak"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment