Skip to content

Instantly share code, notes, and snippets.

@alper111
Created December 1, 2023 11:18
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 alper111/4071f22c96cfebe2091e36b6909178f8 to your computer and use it in GitHub Desktop.
Save alper111/4071f22c96cfebe2091e36b6909178f8 to your computer and use it in GitHub Desktop.
My vscode settings.json
{
"editor.minimap.enabled": false,
"editor.fontFamily": "SF Mono",
"editor.bracketPairColorization.enabled": false,
"editor.acceptSuggestionOnEnter": "off",
"editor.inlineSuggest.enabled": true,
"files.autoSave": "onFocusChange",
"files.associations": {
"*.pro": "prolog",
"*.pl": "perl"
},
"window.titleBarStyle": "native",
"window.nativeTabs": true,
"workbench.startupEditor": "none",
"workbench.editor.showTabs": "single",
"workbench.iconTheme": "Monokai Classic Icons",
"workbench.colorTheme": "Brogrammer",
"workbench.editor.empty.hint": "hidden",
"zenMode.showTabs": "single",
"terminal.integrated.inheritEnv": false,
"terminal.integrated.env.osx": {
"PATH": "${userHome}/mambaforge/bin:$PATH"
},
"python.defaultInterpreterPath": "${userHome}/mambaforge/bin/python",
"python.condaPath": "${userHome}/mambaforge/bin/mamba",
"python.terminal.activateEnvironment": true,
"[python]": {
"editor.formatOnType": true
},
"flake8.args": [
"--max-line-length=120"
],
"flake8.interpreter": [
"${userHome}/mambaforge/bin/python"
],
"git.autofetch": true,
"git.ignoreLegacyWarning": true,
"github.copilot.enable": {
"*": true,
"plaintext": true,
"markdown": true,
"scminput": false,
"yaml": true,
"latex": true,
"bibtex": true
},
"latex-workshop.latex.autoBuild.run": "never",
"vim.easymotion": true,
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": true,
"vim.leader": "<space>",
"vim.smartRelativeLine": true,
"gitlens.hovers.currentLine.over": "line",
"gitlens.currentLine.enabled": false,
"gitlens.statusBar.enabled": false,
"gitlens.codeLens.enabled": false,
"gitlens.hovers.enabled": false,
"jupyter.askForKernelRestart": false,
"notebook.output.scrolling": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment