Skip to content

Instantly share code, notes, and snippets.

@jaimeiniesta
Forked from thbar/settings.jsonc
Created May 12, 2020 10:36
Show Gist options
  • Save jaimeiniesta/52ef977135c3d442d7984bc46fd52ff9 to your computer and use it in GitHub Desktop.
Save jaimeiniesta/52ef977135c3d442d7984bc46fd52ff9 to your computer and use it in GitHub Desktop.
Current minimalistic VSCode setup (à la atom/textmate)
// My settings for VS Code - inspired by https://gist.github.com/thbar/cfeb158fb6fc52a0fed1df3c84048ffc
{
"window.zoomLevel": 2,
"editor.formatOnSave": true,
"editor.defaultFormatter": "JakeBecker.elixir-ls",
"terminal.integrated.shell.osx": "/bin/bash",
// path at top of editor is very noisy
"breadcrumbs.enabled": false,
// minimap on right of editor
"editor.minimap.enabled": false,
// vertical lines at start of lines
"editor.renderIndentGuides": false,
// can be useful at times, but I want it off by default
"editor.renderWhitespace": "none",
// space at beginning of lines, before line numbers
"editor.glyphMargin": false,
// bottom bar
"workbench.statusBar.visible": false,
// more accurate for me
"editor.cursorStyle": "line-thin",
// Avoid suggestions of Elixir specs
// https://github.com/JakeBecker/vscode-elixir-ls/issues/101
"elixirLS.suggestSpecs": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment