Created
July 12, 2020 20:01
-
-
Save narennaik/972f1d5b26b04129f6193cc631a63416 to your computer and use it in GitHub Desktop.
vscode 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
{ | |
"editor.fontFamily": "OperatorMonoSSmLig-Light", | |
"explorer.confirmDelete": false, | |
"editor.fontLigatures": true, | |
"terminal.integrated.fontSize": 13, | |
"editor.renderIndentGuides": false, | |
"workbench.activityBar.visible": true, | |
"editor.lineHeight": 27, | |
"workbench.editorAssociations": [ | |
{ | |
"viewType": "default", | |
"filenamePattern": "*.svg" | |
} | |
], | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"editor.scrollbar.horizontal": "hidden", | |
"editor.scrollbar.vertical": "hidden", | |
"zenMode.hideTabs": false, | |
"breadcrumbs.enabled": false, | |
"zenMode.hideActivityBar": false, | |
"terminal.integrated.fontFamily": "OperatorMonoSsmLig-Light", | |
"vim.cursorStylePerMode.normal": "block", | |
"editor.occurrencesHighlight": false, | |
"vim.normalModeKeyBindingsNonRecursive": [ | |
{ | |
"before": ["u"], | |
"after": [], | |
"commands": [ | |
{ | |
"command": "undo", | |
"args": [] | |
} | |
] | |
}, | |
{ | |
"before": ["<C-r>"], | |
"after": [], | |
"commands": [ | |
{ | |
"command": "redo", | |
"args": [] | |
} | |
] | |
} | |
], | |
"vim.handleKeys": { | |
"<D-c>": false, | |
"<D-v>": false | |
}, | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"java.semanticHighlighting.enabled": true, | |
"java.refactor.renameFromFileExplorer": "autoApply", | |
"markdown.preview.fontFamily": "OperatorMonoSSmLig-Light", | |
"leetcode.defaultLanguage": "java", | |
"leetcode.workspaceFolder": "/Users/naren.naik/workspace/codin", | |
"leetcode.hint.configWebviewMarkdown": false, | |
"leetcode.hint.commandShortcut": false, | |
"files.autoSave": "onWindowChange", | |
"editor.fontWeight": "400", | |
"editor.renderWhitespace": "none", | |
"editor.snippetSuggestions": "top", | |
"workbench.startupEditor": "newUntitledFile", | |
"editor.glyphMargin": true, | |
"workbench.editor.enablePreview": false, | |
"explorer.confirmDragAndDrop": false, | |
"files.trimTrailingWhitespace": true, | |
"files.trimFinalNewlines": true, | |
// Formatting Optional. | |
"editor.formatOnSave": true, | |
// "prettier.eslintIntegration": true, | |
// "eslint.run": "onType", | |
// MacOS Only Settings. | |
"workbench.fontAliasing": "antialiased", | |
"workbench.statusBar.feedback.visible": false, | |
// The default syntax (TextMate) highlighter classifies many tokens as variables and these are now (since VSCode 1.43) resolved into namespaces, classes, parameters, and so on. This is called Semantic highlighting support for TypeScript and JavaScript. But many themes and language extensions seem broken with single-colored syntax. This came as a surprise to me. It's set `true` by default. I recommend disabling this for now. | |
"editor.semanticHighlighting.enabled": false, | |
// SOP's highlight matching tag setting. | |
"highlight-matching-tag.styles": { | |
"opening": { | |
"full": { | |
"highlight": "rgba(165, 153, 233, 0.3)" | |
} | |
} | |
}, | |
"zenMode.hideLineNumbers": true, | |
"editor.lineNumbers": "off", | |
"editor.fontSize": 18, | |
"editor.minimap.enabled": false, | |
"editor.gotoLocation.multipleDefinitions": "goto", | |
"editor.gotoLocation.multipleTypeDefinitions": "goto", | |
"workbench.colorCustomizations": { | |
"editorCursor.foreground": "#FF4081" | |
}, | |
"editor.renderLineHighlight": "none", | |
"editor.matchBrackets": "near", | |
"workbench.colorTheme": "Palenight Theme", | |
"editor.cursorWidth": 3 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment