-
-
Save jaimeiniesta/52ef977135c3d442d7984bc46fd52ff9 to your computer and use it in GitHub Desktop.
Current minimalistic VSCode setup (à la atom/textmate)
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
Show hidden characters
// 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