Last active
March 23, 2025 15:49
-
-
Save cheeze2000/a66543035a0c8c8768ce7e61cff4c5f3 to your computer and use it in GitHub Desktop.
VSCode Settings
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
{ | |
"[haskell]": { | |
"editor.insertSpaces": true | |
}, | |
"C_Cpp.default.compilerPath": "/opt/homebrew/bin/g++-14", | |
"C_Cpp.default.intelliSenseMode": "macos-gcc-arm64", | |
"breadcrumbs.enabled": false, | |
"editor.autoClosingBrackets": "never", | |
"editor.autoClosingDelete": "never", | |
"editor.autoClosingOvertype": "never", | |
"editor.autoClosingQuotes": "never", | |
"editor.cursorBlinking": "solid", | |
"editor.fontFamily": "Inconsolata Nerd Font", | |
"editor.fontSize": 17, | |
"editor.inlayHints.enabled": "off", | |
"editor.insertSpaces": false, | |
"editor.minimap.enabled": false, | |
"editor.renderWhitespace": "boundary", | |
"editor.stickyScroll.enabled": false, | |
"explorer.confirmDelete": false, | |
"explorer.confirmDragAndDrop": false, | |
"files.eol": "\n", | |
"files.insertFinalNewline": true, | |
"files.trimFinalNewlines": true, | |
"files.trimTrailingWhitespace": true, | |
"git.openRepositoryInParentFolders": "never", | |
"magit.display-buffer-function": "same-column", | |
"purescript.addNpmPath": true, | |
"purescript.declarationTypeCodeLens": false, | |
"purescript.exportsCodeLens": false, | |
"rust-analyzer.inlayHints.closingBraceHints.enable": false, | |
"rust-analyzer.inlayHints.chainingHints.enable": false, | |
"rust-analyzer.inlayHints.genericParameterHints.const.enable": false, | |
"rust-analyzer.inlayHints.parameterHints.enable": false, | |
"rust-analyzer.inlayHints.renderColons": false, | |
"rust-analyzer.inlayHints.typeHints.enable": false, | |
"oneDarkPro.italic": false, | |
"terminal.integrated.fontSize": 14, | |
"update.showReleaseNotes": false, | |
"vim.normalModeKeyBindingsNonRecursive": [ | |
{ | |
"before": ["g", "s"], | |
"commands": ["magit.status"], | |
"silent": true | |
} | |
], | |
"vim.visualModeKeyBindingsNonRecursive": [ | |
{ | |
"before": ["<C-y>"], | |
"commands": ["editor.action.clipboardCopyAction", "extension.vim_ctrl+["], | |
"silent": true | |
} | |
], | |
"window.commandCenter": false, | |
"workbench.activityBar.location": "hidden", | |
"workbench.colorTheme": "One Dark Pro", | |
"workbench.editor.showTabs": "none", | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.layoutControl.enabled": false, | |
"workbench.tree.indent": 15 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment