dotfiles/vscode/settings.json
2021-09-30 17:39:02 +03:00

67 lines
No EOL
2 KiB
JSON

{
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "GitHub Dark Default",
"workbench.sideBar.location": "left",
"workbench.editor.untitled.hint": "hidden",
"workbench.startupEditor": "none",
"workbench.panel.defaultLocation": "bottom",
"workbench.activityBar.visible": false,
"window.menuBarVisibility": "toggle",
"update.showReleaseNotes": false,
// Editor
// "editor.cursorSmoothCaretAnimation": true,
"editor.fontFamily": "'Jetbrains Mono', monospace",
"editor.inlineSuggest.enabled": true,
"editor.hover.enabled": true,
"editor.minimap.enabled": false,
"editor.suggestSelection": "first",
"editor.smoothScrolling": true,
"editor.mouseWheelZoom": true,
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
"editor.tabCompletion": "on",
"editor.wordWrap": "off",
"editor.fontSize": 14,
"editor.tabSize": 4,
// Files
"explorer.compactFolders": true,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"files.insertFinalNewline": false,
"files.trimFinalNewlines": false,
"files.trimTrailingWhitespace": false,
"files.exclude": {
"**/node_modules": true,
"**/env": true,
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
// Git
"gitlens.codeLens.enabled": true,
"git.autofetch": true,
"git.confirmSync": false,
"git.enableSmartCommit": true,
"terminal.integrated.tabs.enabled": false,
// Extensions
"extensions.ignoreRecommendations": true,
"docker.showStartPage": false,
"calva.myCljAliases": [
"nREPL",
"nrepl",
"test"
],
"calva.paredit.defaultKeyMap": "strict",
// Languages
"javascript.suggestionActions.enabled": false,
"typescript.suggestionActions.enabled": false,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"go.toolsManagement.autoUpdate": true
}