Created
January 14, 2023 05:13
-
-
Save drofp/b2282b915aae2d9a8f752e0940cd2261 to your computer and use it in GitHub Desktop.
VS Code settings on ubuntu
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
// settings from github profile | |
{ | |
"python.pythonPath": "/anaconda3", | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"workbench.colorTheme": "Dracula Soft", | |
"files.trimTrailingWhitespace": true, | |
"python.jediEnabled": false, | |
"git.autofetch": true, | |
"[cpp]": { | |
}, | |
"editor.rulers": [80], | |
"workbench.colorCustomizations": { | |
"editorRuler.foreground": "#9c9b98" | |
}, | |
"editor.wordWrap": "wordWrapColumn", | |
"gitlens.menus": { | |
"editorGroup": { | |
"blame": false, | |
"compare": false | |
}, | |
}, | |
"python.languageServer": "Pylance", | |
"terminal.integrated.inheritEnv": false, | |
"editor.fontSize": 12, | |
"mssql.connections": [ | |
{ | |
"server": "{{put-server-name-here}}", | |
"database": "{{put-database-name-here}}", | |
"user": "{{put-username-here}}", | |
"password": "{{put-password-here}}" | |
} | |
], | |
"sshfs.configs": [ | |
{ | |
"name": "gatech_pace", | |
"host": "gatech-pace", | |
"root": "/storage/home/hcocice1/dpornaras3/", | |
"username": "dpornaras3", | |
"password": "nUQ_MZ*ehL6sWnS" | |
} | |
], | |
"workbench.editorAssociations": { | |
"*.ipynb": "jupyter-notebook" | |
}, | |
"notebook.cellToolbarLocation": { | |
"default": "right", | |
"jupyter-notebook": "left" | |
}, | |
// "editor.multiCursorModifier": "ctrlCmd" | |
} |
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
// default settings | |
{ | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"workbench.iconTheme": "material-icon-theme", | |
"python.languageServer": "Microsoft", | |
"python.showStartPage": false, | |
"trailing-spaces.trimOnSave": true, | |
"git.autofetch": true, | |
"editor.rulers": [ | |
80 | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment