mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 08:41:34 +02:00
75 lines
No EOL
2.1 KiB
JSON
75 lines
No EOL
2.1 KiB
JSON
{
|
|
"workbench.colorTheme": "Default Dark+",
|
|
"workbench.iconTheme": "material-icon-theme",
|
|
"workbench.sideBar.location": "right",
|
|
"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": false,
|
|
"editor.cursorBlinking": "expand",
|
|
"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": true,
|
|
"explorer.confirmDragAndDrop": false,
|
|
"explorer.confirmDelete": false,
|
|
"files.trimTrailingWhitespace": true,
|
|
"files.exclude": {
|
|
"**/node_modules": true,
|
|
"**/env": true,
|
|
"**/.classpath": true,
|
|
"**/.project": true,
|
|
"**/.settings": true,
|
|
"**/.factorypath": true
|
|
},
|
|
// Git
|
|
"git.autofetch": true,
|
|
"git.confirmSync": false,
|
|
"git.enableSmartCommit": true,
|
|
// Extensions
|
|
"extensions.ignoreRecommendations": true,
|
|
"gitlens.codeLens.enabled": true,
|
|
"tabnine.experimentalAutoImports": true,
|
|
// Languages
|
|
"go.lintOnSave": "package",
|
|
// "go.lintTool": "golangci-lint",
|
|
"go.formatTool": "gofumpt",
|
|
"python.formatting.provider": "black",
|
|
"python.analysis.autoImportCompletions": true,
|
|
"python.formatting.blackPath": "~/.local/bin/black",
|
|
"javascript.suggestionActions.enabled": false,
|
|
"typescript.suggestionActions.enabled": false,
|
|
"[go]": {
|
|
"editor.insertSpaces": false
|
|
},
|
|
"[python]": {
|
|
"editor.tabSize": 4
|
|
},
|
|
"[javascript]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.tabSize": 2
|
|
},
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.tabSize": 2
|
|
},
|
|
"vim.hlsearch": true,
|
|
"vim.useSystemClipboard": true,
|
|
"workbench.editorAssociations": {
|
|
"*.mp4": "default"
|
|
},
|
|
"liveServer.settings.donotVerifyTags": true
|
|
} |