dotfiles/vscode/settings.json

63 lines
No EOL
1.8 KiB
JSON

{
"workbench.colorTheme": "GitHub Light",
"workbench.iconTheme": "material-icon-theme",
"workbench.sideBar.location": "left",
"workbench.startupEditor": "none",
"workbench.activityBar.visible": false,
"window.menuBarVisibility": "toggle",
"update.showReleaseNotes": false,
// Font
"editor.fontSize": 16,
"terminal.integrated.fontSize": 15,
// Editor
"editor.fontFamily": "'Jetbrains Mono'",
"editor.cursorSmoothCaretAnimation": true,
"editor.smoothScrolling": true,
"editor.inlineSuggest.enabled": true,
"editor.hover.enabled": true,
"editor.minimap.enabled": false,
"editor.mouseWheelZoom": true,
"editor.tabCompletion": "on",
"editor.formatOnSave": true,
"editor.wordWrap": "off",
"editor.tabSize": 4,
// Files
"explorer.compactFolders": false,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"files.trimTrailingWhitespace": true,
"files.exclude": {
"**/node_modules": true,
"**/env": true
},
// Git
"git.autofetch": true,
"git.confirmSync": false,
"git.enableSmartCommit": true,
// Extensions
"extensions.ignoreRecommendations": true,
"gitlens.codeLens.enabled": true,
// Languages
"[go]": {
"editor.insertSpaces": false,
"go.lintOnSave": "package",
"go.lintTool": "golint",
"go.formatTool": "gofumpt"
},
"[python]": {
"python.formatting.provider": "black",
"python.analysis.autoImportCompletions": true,
"python.formatting.blackPath": "~/.local/bin/black",
"editor.tabSize": 4,
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"javascript.suggestionActions.enabled": false,
"editor.tabSize": 2
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"typescript.suggestionActions.enabled": false,
"editor.tabSize": 2
}
}