Skip to content

Instantly share code, notes, and snippets.

@GeoffChurch
Last active August 7, 2021 00:48
Show Gist options
  • Save GeoffChurch/26d89546fbbe909ead8e70db47857701 to your computer and use it in GitHub Desktop.
Save GeoffChurch/26d89546fbbe909ead8e70db47857701 to your computer and use it in GitHub Desktop.
VS Code settings
{
"editor.acceptSuggestionOnEnter": "off",
"editor.selectionClipboard": false, // Disable middle-click paste.
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": false,
"workbench.startupEditor": "none",
"window.zoomLevel": 3,
"window.restoreFullscreen": true,
"workbench.statusBar.visible": true,
"workbench.activityBar.visible": false,
"workbench.panel.defaultLocation": "bottom",
"workbench.editor.showTabs": false,
"julia.enableTelemetry": false,
"editor.minimap.enabled": false,
"editor.lineNumbers": "off",
"workbench.colorTheme": "Default High Contrast",
"editor.renderLineHighlight": "gutter",
"git.autofetch": true,
"python.pythonPath": "/home/l/.miniconda3/bin/python",
"python.linting.pylintEnabled": true,
"python.linting.enabled": true,
"[haskell]": {
"editor.defaultFormatter": "haskell.haskell"
},
"python.showStartPage": false,
"terminal.integrated.inheritEnv": false,
"terminal.integrated.showExitAlert": false,
"explorer.confirmDragAndDrop": false,
"editor.rulers": [
// 100
],
"files.associations": {
"*.pl": "prolog"
},
"haskell.liquidOn": true,
"window.menuBarVisibility": "hidden"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment