Jitendra Nirnejak's Editor Configuration
This file contains 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
Show hidden characters
{ | |
"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.minimap.enabled": false, | |
"editor.minimap.renderCharacters": 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 check for updates? [Y/n]": "Y\r" | |
}, | |
"workbench.colorTheme": "GitHub Dark", | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.editor.untitled.hint": "hidden", | |
"workbench.layoutControl.enabled": false, | |
"workbench.startupEditor": "none", | |
"window.commandCenter": true, | |
"explorer.compactFolders": false, | |
"notebook.lineNumbers": "on", | |
"git.autofetch": true, | |
"git.branchProtection": ["master", "main"], | |
"github.copilot.enable": { | |
"*": true, | |
"yaml": false, | |
"plaintext": true, | |
"markdown": true | |
}, | |
"material-icon-theme.folders.theme": "specific", | |
"material-icon-theme.activeIconPack": "vue_vuex", | |
"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" | |
], | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
// "[javascript, javascriptreact, typescript, typescriptreact]": { | |
// "editor.defaultFormatter": "vscode.typescript-language-features" | |
// }, | |
"[prisma]": { | |
"editor.defaultFormatter": "Prisma.prisma" | |
}, | |
"[go]": { | |
"editor.defaultFormatter": "golang.go" | |
}, | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"volar.icon.preview": false, | |
"volar.icon.splitEditors": false, | |
"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