Last active
August 22, 2018 04:49
-
-
Save hackerzhut/e8ba866ebac9d3e5a75c8146711bc409 to your computer and use it in GitHub Desktop.
VSCode Config
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
{ | |
"editor.fontFamily": "FiraCode-Light, OperatorMono-Light, Menlo, Monaco, monospace", | |
// Controls the font size in pixels. | |
"editor.fontSize": 15, | |
"workbench.colorTheme": "Atom One Dark", | |
"editor.lineHeight": 28, | |
// "window.zoomLevel": 0.25, | |
"git.enableSmartCommit": true, | |
// "editor.multiCursorModifier": "ctrlCmd", | |
"editor.formatOnPaste": true, | |
"editor.minimap.enabled": false, | |
"files.exclude": { | |
"/.git": true, | |
"/.svn": true, | |
"/.hg": true, | |
"/CVS": true, | |
"/.DS_Store": true, | |
"/.history": true, | |
"/.github": true, | |
".vscode": true, | |
"vendor": true, | |
"glide.lock": true, | |
// "**/node_modules": false | |
}, | |
"window.zoomLevel": 0, | |
"editor.lineNumbers": "on", | |
"terminal.integrated.fontFamily": "SourceCodePro-Light, Monaco, Menlo", | |
"terminal.integrated.fontSize": 15, | |
"terminal.integrated.lineHeight": 1.25, | |
// Buffer size | |
"terminal.integrated.scrollback": 150000, | |
"terminal.integrated.cursorBlinking": true, | |
"terminal.integrated.cursorStyle": "line", | |
"workbench.colorCustomizations": { | |
"terminal.ansiBlack": "#000000", | |
"terminal.ansiRed": "#c23621", | |
"terminal.ansiGreen": "#25bc24", | |
"terminal.ansiYellow": "#adad27", | |
"terminal.ansiBlue": "#492ee1", | |
"terminal.ansiMagenta": "#d338d3", | |
"terminal.ansiCyan": "#33bbc8", | |
"terminal.ansiWhite": "#cbcccd", | |
"terminal.ansiBrightBlack": "#818383", | |
"terminal.ansiBrightRed": "#fc391f", | |
"terminal.ansiBrightGreen": "#31e722", | |
"terminal.ansiBrightYellow": "#eaec23", | |
"terminal.ansiBrightBlue": "#5833ff", | |
"terminal.ansiBrightMagenta": "#f935f8", | |
"terminal.ansiBrightCyan": "#14f0f0", | |
"terminal.ansiBrightWhite": "#e9ebeb", | |
}, | |
"problems.decorations.enabled": true, | |
"workbench.list.multiSelectModifier": "alt", | |
"git.inputValidation": "warn", | |
"terminal.integrated.copyOnSelection": true, | |
"terminal.integrated.fontWeightBold": "normal", | |
"prettier.singleQuote": true, | |
"explorer.confirmDragAndDrop": false, | |
"vsicons.dontShowNewVersionMessage": true, | |
"editor.fontLigatures": true, | |
"breadcrumbs.enabled": true | |
// "workbench.settings.enableNaturalLanguageSearch": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment