Skip to content

Instantly share code, notes, and snippets.

@v-i-s-h
Last active September 14, 2022 09:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save v-i-s-h/7ac80c7ca96e91aae250b3462c9af6d1 to your computer and use it in GitHub Desktop.
Save v-i-s-h/7ac80c7ca96e91aae250b3462c9af6d1 to your computer and use it in GitHub Desktop.
My VS Code User Settings
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "ctrl+\\",
"command": "unicode-latex.insertMathSymbol"
},
{
"key": "ctrl+shift+k",
"command": "workbench.action.terminal.focusNext"
},
{
"key": "ctrl+shift+j",
"command": "workbench.action.terminal.focusPrevious"
}
]
{
// Editor
"editor.rulers": [ 80, 92, 120 ],
"editor.minimap.renderCharacters": false,
"window.titleBarStyle": "custom",
"window.menuBarVisibility": "toggle",
// File Explorer
"explorer.openEditors.visible": 0,
"explorer.confirmDragAndDrop": false,
"extensions.ignoreRecommendations": true,
// latex-workshop
"latex-workshop.view.pdf.viewer": "tab",
"latex-workshop.view.pdf.zoom": "page-width",
"latex-workshop.view.pdf.backgroundColor": "#d4c6b8",
"latex-workshop.latex.autoBuild.run": "never",
// julia
"editor.fontFamily": "'JuliaMono Latin:style=RegularLatin,Regular', 'Droid Sans Mono', 'monospace'",
"github.gitAuthentication": false,
"window.restoreWindows": "none",
"workbench.enableExperiments": false,
"workbench.editor.restoreViewState": false,
"editor.maxTokenizationLineLength": 2000,
"diffEditor.ignoreTrimWhitespace": false,
"terminal.integrated.lineHeight": 1.05,
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.cursorWidth": 8,
"terminal.integrated.fontFamily": "'Julia Mono', 'MesloLGS NF', 'Droid Sans Mono', 'monospace'",
"terminal.integrated.scrollback": 500,
"terminal.integrated.commandsToSkipShell": [
"language-julia.interrupt"
],
"editor.fontSize": 15,
"terminal.integrated.defaultProfile.linux": "bash",
"workbench.editorAssociations": {
"*.ipynb": "jupyter-notebook",
"*.pdf": "latex-workshop-pdf-hook"
},
"notebook.cellToolbarLocation": {
"default": "right",
"jupyter-notebook": "left"
},
"jupyter.askForKernelRestart": false,
"notebook.lineNumbers": "on",
"git.ignoreLegacyWarning": true,
"notebook.consolidatedRunButton": true,
"editor.accessibilitySupport": "off",
"spellright.language": [
"en_US"
],
"files.watcherExclude": {
"**/logs/*": true,
"**/zoo/*": true
},
"thunder-client.saveToWorkspace": true,
"typescript.validate.enable": false,
"[dart]": {
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.rulers": [
80
],
"editor.selectionHighlight": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.suggestSelection": "first",
"editor.tabCompletion": "onlySnippets",
"editor.wordBasedSuggestions": false
},
"extensions.experimental.affinity": {
"ms-toolsai.jupyter": 1,
"ms-toolsai.jupyter-renderers": 1,
"ms-python.python": 1,
"ms-python.vscode-pylance": 1
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment