Last active
April 26, 2020 23:47
-
-
Save theol0403/191ec4a08f7738ae3d5ae747fe4bba3a to your computer and use it in GitHub Desktop.
vscode
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
{ | |
// "C_Cpp.autocomplete": "Disabled", | |
"C_Cpp.default.cStandard": "c99", | |
"C_Cpp.default.cppStandard": "c++17", | |
"C_Cpp.errorSquiggles": "Disabled", | |
"C_Cpp.intelliSenseEngine": "Disabled", | |
"C_Cpp.autocomplete": "Disabled", | |
"C_Cpp.enhancedColorization": "Disabled", | |
"C_Cpp.updateChannel": "Insiders", | |
"cSpell.allowCompoundWords": true, | |
"cSpell.dictionaries": [ | |
"misc", | |
"softwareTerms", | |
], | |
"cSpell.enableFiletypes": [ | |
"diff", | |
"ignore", | |
"makefile", | |
"objective-cpp", | |
"properties", | |
"search-result" | |
], | |
"cSpell.ignoreRegExpList": [ | |
"@param *i" | |
], | |
"cSpell.includeRegExpList": [ | |
"CStyleComment", | |
"string" | |
], | |
"cSpell.language": "en,en-US,en-GB", | |
"cSpell.numSuggestions": 6, | |
"debug.inlineValues": true, | |
"diffEditor.renderSideBySide": false, | |
"editor.fontFamily": "Office Code Pro Medium", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 12, | |
"editor.formatOnSave": true, | |
"editor.renderControlCharacters": false, | |
"editor.smoothScrolling": true, | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [ | |
{ | |
"scope": "comment", | |
"settings": { | |
"fontStyle": "" | |
} | |
} | |
] | |
}, | |
"git.autofetch": true, | |
"git.confirmSync": false, | |
"gitlens.codeLens.enabled": false, | |
"gitlens.currentLine.enabled": false, | |
"gitlens.hovers.currentLine.over": "line", | |
"gitlens.statusBar.enabled": false, | |
"gitlens.views.repositories.files.layout": "tree", | |
"tabnine.disable_file_regex": [ | |
".[^cpp|hpp]$" | |
], | |
"terminal.integrated.fontSize": 12, | |
"workbench.colorTheme": "Monokai Pro", | |
"workbench.iconTheme": "Monokai Pro Icons", | |
"cSpell.diagnosticLevel": "Hint", | |
"window.title": "${activeEditorShort}${separator}${rootName}", | |
"git.detectSubmodules": false, | |
"git.enableSmartCommit": true, | |
"git.fetchOnPull": true, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"terminal.integrated.shellArgs.linux": [ | |
"-l" | |
], | |
"diffEditor.ignoreTrimWhitespace": true, | |
"debug.onTaskErrors": "abort", | |
"gitlens.advanced.telemetry.enabled": false, | |
"gitlens.codeLens.recentChange.enabled": false, | |
"gitlens.hovers.currentLine.enabled": false, | |
"editor.quickSuggestions": { | |
"other": true, | |
"comments": true, | |
"strings": true | |
}, | |
"editor.suggest.statusBar.visible": true, | |
"editor.tabCompletion": "on", | |
"errorLens.enabledDiagnosticLevels": [ | |
"error", | |
"warning", | |
"info" | |
], | |
// "editor.suggest.localityBonus": true, | |
"editor.suggest.maxVisibleSuggestions": 10, | |
"editor.suggest.shareSuggestSelections": true, | |
"clangd.semanticHighlighting": false, | |
"errorLens.followCursor": "activeLine", | |
"testExplorer.showCollapseButton": false, | |
"testExplorer.showExpandButton": 0, | |
"testExplorer.showOnRun": true, | |
"window.zoomLevel": 0, | |
"rust-analyzer.inlayHints.maxLength": 5, | |
"explorer.confirmDragAndDrop": false, | |
"python.dataScience.askForKernelRestart": false, | |
"vim.experimentalOptimizations": true, | |
"vim.highlightedyank.enable": true, | |
"vim.highlightedyank.color": "#FA9766", | |
"vim.highlightedyank.duration": 300 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment