Created
January 16, 2024 19:15
-
-
Save kbarnes3/16ffeb6a4465b9e93a3c1faaefabd8d6 to your computer and use it in GitHub Desktop.
VS Code 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.renderWhitespace": "boundary", | |
"vim.neovimPath": "C:/Program Files/Neovim/bin/nvim.exe", | |
"vim.enableNeovim": true, | |
"vim.useCtrlKeys": false, | |
"vim.normalModeKeyBindingsNonRecursive": [ | |
{ | |
"before": [ | |
"<leader>", "v" | |
], | |
"after": [ | |
"C-v" | |
] | |
} | |
], | |
"vim.handleKeys": { | |
"<C-d>": true, | |
"<C-c>": false | |
}, | |
"extensions.ignoreRecommendations": false, | |
"powershell.integratedConsole.showOnStartup": false, | |
"editor.fontFamily": "'CaskaydiaCove Nerd Font Mono','Cascadia Code',Consolas, 'Courier New', monospace", | |
"vim.easymotion": true, | |
"editor.lineNumbers": "relative", | |
"vim.camelCaseMotion.enable": true, | |
"vim.useSystemClipboard": true, | |
"workbench.colorTheme": "Monokai", | |
"workbench.iconTheme": "vscode-icons", | |
"html.mirrorCursorOnMatchingTag": false, | |
"diffEditor.renderSideBySide": false, | |
"vim.easymotionMarkerForegroundColorOneChar": "red", | |
"vim.easymotionMarkerFontWeight": "bold", | |
"workbench.editorAssociations": { | |
"*.ipynb": "jupyter-notebook" | |
}, | |
"vscode-pets.petSize": "large", | |
"vscode-pets.petColor": "black", | |
"vsicons.dontShowNewVersionMessage": true, | |
"editor.cursorStyle": "line", | |
"editor.wordSeparators": "/\\()\"':,.;<>~!@#$%^&*|+=[]{}`?-", | |
"editor.wordWrap": "off", | |
"notebook.cellToolbarLocation": { | |
"default": "right", | |
"jupyter-notebook": "left" | |
}, | |
"remote.SSH.remotePlatform": { | |
"miscwebdev": "linux" | |
}, | |
"python.languageServer": "Default", | |
"editor.guides.bracketPairs": "active", | |
"editor.bracketPairColorization.enabled": true, | |
"vscode-pets.position": "explorer", | |
"editor.stickyScroll.enabled": true, | |
"[python]": { | |
"editor.formatOnType": true | |
}, | |
"git.openRepositoryInParentFolders": "always", | |
"lldb.dbgconfig": {} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment