Created
March 14, 2025 10:38
-
-
Save okaybeydanol/61bf1464ca8a5e3b4299ef2195e85f0c to your computer and use it in GitHub Desktop.
ad
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
{ | |
// ******************************* | |
// * GENERAL SETTINGS * | |
// ******************************* | |
"workbench.startupEditor": "none", | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.editor.closeOnFileDelete": false, | |
"window.zoomLevel": 0, | |
"window.newWindowProfile": "Default", | |
// ******************************* | |
// * EDITOR SETTINGS * | |
// ******************************* | |
"editor.fontSize": 15, | |
"editor.tabSize": 2, | |
"editor.lineHeight": 24, | |
"editor.stickyScroll.maxLineCount": 20, | |
"editor.quickSuggestionsDelay": 0, | |
"editor.fontFamily": "'Fira Code','MesloLGS NF', 'Courier New', monospace", | |
"editor.fontWeight": "450", | |
"editor.fontLigatures": "'ss03', 'ss05', 'cv18'", | |
"editor.renderWhitespace": "all", | |
"editor.cursorBlinking": "smooth", | |
"editor.suggestSelection": "first", | |
"editor.wordWrap": "on", | |
"editor.cursorStyle": "line-thin", | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.snippetSuggestions": "inline", | |
"editor.tabCompletion": "on", | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.wordBreak": "normal", | |
"editor.suggestOnTriggerCharacters": true, | |
"editor.insertSpaces": true, | |
"editor.detectIndentation": false, | |
"editor.minimap.enabled": false, | |
"editor.linkedEditing": true, | |
"editor.inlineSuggest.enabled": true, | |
"editor.mouseWheelZoom": true, | |
"editor.unicodeHighlight.allowedLocales": { "tr": true }, | |
"editor.formatOnSave": true, | |
"editor.formatOnPaste": true, | |
"editor.formatOnType": true, | |
"editor.quickSuggestions": { | |
"other": true, | |
"comments": false, | |
"strings": true | |
}, | |
"editor.codeActionsOnSave": { | |
"source.organizeImports": "always" | |
}, | |
// ******************************* | |
// * LANGUAGE SETTINGS * | |
// ******************************* | |
"cSpell.language": "en", | |
"cSpell.userWords": [], | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact", | |
"typescript": "typescriptreact" | |
}, | |
// ******************************* | |
// * TERMINAL SETTINGS * | |
// ******************************* | |
"terminal.integrated.fontFamily": "'MesloLGS NF', 'Fira Code', 'Courier New', monospace", | |
"terminal.integrated.defaultProfile.osx": "zsh", | |
// ******************************* | |
// * FILE WATCHING * | |
// ******************************* | |
"files.watcherExclude": { | |
"**/.git/objects/**": true, | |
"**/node_modules/**": true, | |
"**/.gradle/**": true, | |
"**/build/**": true, | |
"**/android/**": true, | |
"**/ios/**": true, | |
"**/Pods/**": true, | |
"**/DerivedData/**": true, | |
"**/*.xcworkspace/**": true, | |
"**/*.xcuserdata/**": true, | |
"**/dist/**": true, | |
"**/*.log": true, | |
"**/metro-cache/**": true | |
}, | |
"search.exclude": { | |
"**/node_modules": false, | |
"**/ios": true, | |
"**/android": true | |
}, | |
// ******************************* | |
// * GIT SETTINGS * | |
// ******************************* | |
"git.confirmSync": false, | |
"git.autofetch": true, | |
"git-autoconfig.configList": [ | |
{ | |
"user.email": "[email protected]", | |
"user.name": "okaybeydanol" | |
}, | |
{ | |
"user.email": "[email protected]", | |
"user.name": "OkayBeydanol" | |
}, | |
{ | |
"user.email": "[email protected]", | |
"user.name": "OkayB" | |
} | |
], | |
// ******************************* | |
// * EXTENSION SETTINGS * | |
// ******************************* | |
"material-icon-theme.folders.color": "#26a69a", | |
"material-icon-theme.activeIconPack": "react_redux", | |
"material-icon-theme.folders.associations": { | |
"navigation": "routes" | |
}, | |
"github.copilot.enable": { | |
"*": true, | |
"plaintext": false, | |
"markdown": false, | |
"scminput": false | |
}, | |
"emmet.triggerExpansionOnTab": true, | |
"github.copilot.selectedCompletionModel": "gpt-4o-copilot", | |
"todo-tree.general.tags": ["TODO", "*IMPORTANT", "!DANGER", "?QUESTION"], | |
"todo-tree.highlights.customHighlight": { | |
"TODO": { | |
"icon": "checklist", | |
"iconColour": "#FF8C00", | |
"foreground": "#FF8C00" | |
}, | |
"*IMPORTANT": { | |
"icon": "clock", | |
"iconColour": "#98C379", | |
"foreground": "#98C379" | |
}, | |
"!DANGER": { | |
"icon": "alert", | |
"iconColour": "#FF0000", | |
"foreground": "#FF0000" | |
}, | |
"?QUESTION": { | |
"icon": "question", | |
"iconColour": "#3498DB", | |
"foreground": "#3498DB" | |
} | |
}, | |
"gist.defaultPrivate": false, | |
"accessibility.voice.speechLanguage": "tr-TR", | |
// ******************************* | |
// * OTHER SETTINGS * | |
// ******************************* | |
"explorer.confirmDelete": false, | |
"explorer.confirmDragAndDrop": false, | |
"telemetry.telemetryLevel": "off", | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"diffEditor.ignoreTrimWhitespace": false, | |
"diffEditor.renderSideBySide": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment