Created
August 21, 2023 01:41
-
-
Save kukiron/dc74e6c336b43e8137898540d0681f8c to your computer and use it in GitHub Desktop.
Latest VS Code Settings JSON
This file contains hidden or 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
{ | |
"auto-rename-tag.activationOnLanguage": [ | |
"html", | |
"xml", | |
"php", | |
"javascript", | |
"typescript", | |
"javascriptreact", | |
"typescriptreact", | |
], | |
/** EDITOR **/ | |
// "editor.bracketPairColorization.enabled": true, | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true | |
}, | |
"editor.cursorSmoothCaretAnimation": "on", | |
"editor.cursorStyle": "line", | |
"editor.cursorBlinking": "phase", | |
"editor.fontFamily": "Liga Dank Mono, Liga DM Mono, MonoLisa Trial, Liga Apercu Mono, Ligconsolata, Fira Code iScript, Liga Space Mono, Operator Mono Lig, Fira Code", | |
"editor.fontSize": 14, | |
"editor.fontWeight": "400", | |
"editor.lineHeight": 20, | |
"editor.letterSpacing": 0.25, | |
"editor.fontLigatures": true, | |
"editor.renderWhitespace": "none", | |
"editor.minimap.enabled": true, | |
"editor.minimap.renderCharacters": false, | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [ | |
{ | |
"scope": "comment", | |
"settings": { | |
"fontStyle": "italic" | |
} | |
}, | |
] | |
}, | |
"editor.wordWrap": "on", | |
"editor.wrappingIndent": "indent", | |
"editor.tabSize": 2, | |
"editor.dragAndDrop": true, | |
// "editor.formatOnType": true, | |
// "editor.formatOnPaste": true, | |
// "editor.formatOnSave": true, | |
"editor.rulers": [100], | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.snippetSuggestions": "top", | |
"editor.suggestSelection": "first", | |
"editor.tabCompletion": "on", | |
"editor.suggest.preview": true, | |
/* EMMET */ | |
"emmet.triggerExpansionOnTab": true, | |
"emmet.syntaxProfiles": { | |
"javascript": "jsx" | |
}, | |
/* ESLint */ | |
// "eslint.autoFixOnSave": false, | |
"eslint.format.enable": true, | |
"eslint.lintTask.enable": true, | |
/* EXPLORER */ | |
"explorer.confirmDragAndDrop": false, | |
/** FILES **/ | |
// "files.eol": "\n", | |
"files.trimTrailingWhitespace": true, | |
"files.insertFinalNewline": true, | |
"files.exclude": { | |
"**/.trunk/*out": true, | |
"**/node_modules": true | |
}, | |
/* GITLENS */ | |
"gitlens.advanced.messages": { | |
"suppressCommitHasNoPreviousCommitWarning": false, | |
"suppressCommitNotFoundWarning": false, | |
"suppressFileNotUnderSourceControlWarning": false, | |
"suppressGitVersionWarning": false, | |
"suppressLineUncommittedWarning": false, | |
"suppressNoRepositoryWarning": false | |
}, | |
"gitlens.keymap": "chorded", | |
/** JAVASCRIPT **/ | |
"js/ts.implicitProjectConfig.experimentalDecorators": true, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"javascript.validate.enable": false, | |
/* JEST */ | |
// "jest.autoEnable": false, | |
/* LIVE SERVER */ | |
// "liveServer.settings.donotVerifyTags": true, | |
/** PRETTIER **/ | |
// "prettier.singleQuote": true, | |
// "prettier.semi": true, | |
// "prettier.printWidth": 100, | |
/** TERMINAL **/ | |
"terminal.integrated.fontFamily": "Overpass Mono, Fira Code, SF Mono, Roboto Mono Medium, Liga Apercu Mono, Fira Code, Fira Code Medium, Liga Dank Mono Medium, Operator Mono Lig Medium", | |
"terminal.integrated.fontSize": 12, | |
"terminal.integrated.fontWeight": "600", | |
"terminal.integrated.lineHeight": 1, | |
"terminal.integrated.letterSpacing": 0, | |
"terminal.integrated.cursorBlinking": true, | |
"terminal.external.osxExec": "iTerm.app", | |
"terminal.integrated.rightClickBehavior": "paste", | |
"terminal.integrated.defaultProfile.windows": "C:\\Program Files\\Git\\bin\\bash.exe", | |
"terminal.integrated.gpuAcceleration": "on", | |
"terminal.integrated.cursorStyle": "block", | |
/** TYPESCRIPT **/ | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
/** WINDOW **/ | |
"window.titleBarStyle": "custom", | |
"workbench.editor.tabSizing": "shrink", | |
/** <--- Theme Customization ---> **/ | |
"workbench.iconTheme": "material-icon-theme", | |
"diffEditor.ignoreTrimWhitespace": false, | |
"workbench.editorAssociations": { | |
"*.ipynb": "default" | |
}, | |
"files.watcherExclude": { | |
"**/.trunk/*out": true | |
}, | |
/** <--- OTHERS ---> **/ | |
"react-native-tools.showUserTips": false, | |
"[python]": { | |
"editor.formatOnType": true | |
}, | |
"editor.minimap.showSlider": "always", | |
"editor.inlineSuggest.enabled": true, | |
"github.copilot.enable": { | |
"*": true, | |
"plaintext": true, | |
"markdown": true, | |
"scminput": false | |
}, | |
"editor.guides.bracketPairs": true, | |
"workbench.colorCustomizations": {}, | |
"workbench.colorTheme": "Misty Meadows", | |
/* | |
"materialTheme.cache.workbench.settings": { | |
"accent": "Acid Lime", | |
"accentPrevious": "Blue" | |
}, | |
*/ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment