Last active
April 23, 2021 13:47
-
-
Save onur-ozkan/6e382b47e825fc47366476a43494e9cd to your computer and use it in GitHub Desktop.
My custom vscode configuration settings
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
{"lastUpload":"2020-07-14T18:06:52.440Z","extensionVersion":"v3.4.3"} |
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
// Place your key bindings in this file to override the defaultsauto[] | |
[ | |
{ | |
"key": "ctrl+shift+1", | |
"command": "workbench.view.explorer" | |
}, | |
{ | |
"key": "ctrl+shift+e", | |
"command": "-workbench.view.explorer" | |
}, | |
{ | |
"key": "ctrl+shift+2", | |
"command": "workbench.action.findInFiles" | |
}, | |
{ | |
"key": "ctrl+shift+f", | |
"command": "-workbench.action.findInFiles" | |
}, | |
{ | |
"key": "ctrl+shift+3", | |
"command": "workbench.view.scm" | |
}, | |
{ | |
"key": "ctrl+shift+g", | |
"command": "-workbench.view.scm" | |
}, | |
{ | |
"key": "ctrl+shift+4", | |
"command": "workbench.view.debug" | |
}, | |
{ | |
"key": "ctrl+shift+d", | |
"command": "-workbench.view.debug" | |
}, | |
{ | |
"key": "ctrl+shift+5", | |
"command": "workbench.view.extensions" | |
}, | |
{ | |
"key": "ctrl+shift+x", | |
"command": "-workbench.view.extensions" | |
} | |
] |
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
{ | |
"workbench.sideBar.location": "right", | |
"workbench.startupEditor": "newUntitledFile", | |
"editor.cursorBlinking": "smooth", | |
"explorer.confirmDelete": false, | |
"git.autofetch": true, | |
"editor.minimap.enabled": false, | |
"[css]": { | |
"editor.defaultFormatter": "HookyQR.beautify" | |
}, | |
"editor.cursorStyle": "line-thin", | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"[php]": { | |
"editor.defaultFormatter": "bmewburn.vscode-intelephense-client" | |
}, | |
"javascript.implicitProjectConfig.experimentalDecorators": true, | |
"material-icon-theme.folders.color": "#ef5350", | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"explorer.confirmDragAndDrop": false, | |
"[typescript]": { | |
"editor.defaultFormatter": "vscode.typescript-language-features" | |
}, | |
"editor.renderIndentGuides": false, | |
"workbench.useExperimentalGridLayout": true, | |
"customizeUI.activityBar": "bottom", | |
"workbench.activityBar.visible": false, | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"editor.lineNumbers": "relative", | |
"editor.minimap.renderCharacters": false, | |
"editor.renderFinalNewline": false, | |
"editor.fontLigatures": true, | |
"python.jediEnabled": false, | |
"editor.fontFamily": "RobotoMono Nerd Font", | |
"editor.fontSize": 13, | |
"editor.renderLineHighlight": "all", | |
"sync.gist": "6e382b47e825fc47366476a43494e9cd", | |
"window.restoreFullscreen": true, | |
"files.exclude": { | |
"**/.classpath": true, | |
"**/.project": true, | |
"**/.settings": true, | |
"**/.factorypath": true | |
}, | |
"java.errors.incompleteClasspath.severity": "ignore", | |
"terminal.integrated.fontFamily": "RobotoMono Nerd Font", | |
"window.zoomLevel": -1, | |
"vs-kubernetes": { | |
"vs-kubernetes.draft-path.linux": "/home/nimda/.vs-kubernetes/tools/draft/linux-amd64/draft", | |
"vs-kubernetes.helm-path.linux": "/home/nimda/.vs-kubernetes/tools/helm/linux-amd64/helm", | |
"vs-kubernetes.kubectl-path.linux": "/home/nimda/.vs-kubernetes/tools/kubectl/kubectl", | |
"vs-kubernetes.minikube-path.linux": "/home/nimda/.vs-kubernetes/tools/minikube/linux-amd64/minikube" | |
}, | |
"go.formatTool": "goimports", | |
"go.useLanguageServer": true, | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.colorTheme": "One Dark Pro Monokai Darker", | |
"python.languageServer": "Microsoft" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment