Created
November 13, 2018 09:30
-
-
Save serhatyuna/809ece659b569a06ba35a36519bffe3e to your computer and use it in GitHub Desktop.
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
// Place your settings in this file to overwrite the default settings | |
{ | |
"window.zoomLevel": -1, | |
"editor.fontFamily": "SF Mono Light, Office Code Pro D Regular, Operator Mono Light, 'Fira Code', Hack, Menlo, Inconsolata, Consolas, 'Courier New', monospace", | |
"editor.fontSize": 19, | |
"editor.tabSize": 2, | |
// Theme Settings | |
"workbench.iconTheme": "material-icon-theme", | |
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", | |
"workbench.colorTheme": "An Old Hope", | |
"editor.lineHeight": 30, | |
"editor.letterSpacing": 0.5, | |
"workbench.editor.tabSizing": "shrink", | |
"html.format.enable": true, | |
"html.format.preserveNewLines": true, | |
"files.trimTrailingWhitespace": true, | |
"editor.cursorStyle": "line", | |
"editor.wordWrap": "on", | |
// Çoklu seçim ctrl ile yapılıyor | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.fontWeight": "400", | |
"editor.cursorBlinking": "solid", | |
"editor.colorDecorators": false, | |
"editor.minimap.enabled": false, | |
"workbench.activityBar.visible": true, | |
"workbench.sideBar.location": "left", | |
"editor.renderWhitespace": "none", | |
"editor.minimap.showSlider": "always", | |
"workbench.startupEditor": "newUntitledFile", | |
"extensions.ignoreRecommendations": false, | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/CVS": true, | |
"**/.DS_Store": true, | |
"**/.next": true | |
}, | |
// CTRL + W ile kapat | |
"workbench.editor.tabCloseButton": "off", | |
// show snippets before any other auto completion | |
"editor.snippetSuggestions": "top", | |
"workbench.editor.enablePreviewFromQuickOpen": false, | |
"window.title": "${dirty} ${rootName}${separator}${activeEditorShort}", | |
"editor.formatOnSave": true, | |
"[javascript]": { | |
"editor.formatOnSave": false | |
}, | |
"[python]": { | |
"editor.formatOnSave": false | |
}, | |
"terminal.integrated.fontSize": 20, | |
"csharpfixformat.style.spaces.beforeParenthesis": false, | |
"csharpfixformat.style.spaces.afterBracket": false, | |
"csharp.format.enable": false, | |
"emmet.includeLanguages": { | |
"html": "html", | |
"erb": "erb", | |
"javascript": "javascriptreact", | |
"vue": "html", | |
"ejs": "html", | |
//"terminal.external.osxExec": "iTerm.app", | |
//"terminal.integrated.shell.osx": "zsh", | |
}, | |
"php.executablePath": "C:\\php\\php.exe", | |
"php.validate.executablePath": "C:\\php\\php.exe", | |
"php.validate.enable": true, | |
"php.validate.run": "onType", | |
"phpunit.execPath": "C:\\Users\\<yourusername>\\AppData\\Roaming\\Composer\\vendor\\bin\\phpunit.bat", | |
"phpunit.args": [], | |
"files.autoSave": "off", | |
"todo-tree.defaultHighlight": { | |
"foreground": "green", | |
"type": "none" | |
}, | |
"todo-tree.customHighlight": { | |
"TODO": {}, | |
"FIXME": {} | |
}, | |
"files.insertFinalNewline": true, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment