+ vscode config
This commit is contained in:
parent
2e96a05b08
commit
c9e4f68ba1
|
@ -0,0 +1,87 @@
|
||||||
|
{
|
||||||
|
"workbench.startupEditor": "none",
|
||||||
|
"editor.minimap.enabled": false,
|
||||||
|
"workbench.list.smoothScrolling": true,
|
||||||
|
"editor.smoothScrolling": true,
|
||||||
|
"editor.cursorSmoothCaretAnimation": "on",
|
||||||
|
"editor.cursorBlinking": "phase",
|
||||||
|
"window.menuBarVisibility": "toggle",
|
||||||
|
"window.titleBarStyle": "custom",
|
||||||
|
"editor.fontFamily": "'Graph 35+ pix', 'Monocraft', 'Fira Code', 'Pixel Code', 'Ark Pixel 10px ko', 'Droid Sans Mono', 'monospace', monospace",
|
||||||
|
"editor.fontLigatures": true,
|
||||||
|
"editor.mouseWheelZoom": true,
|
||||||
|
"explorer.compactFolders": false,
|
||||||
|
"workbench.iconTheme": "vikings-icon-theme",
|
||||||
|
"editor.selectionClipboard": false,
|
||||||
|
"intelephense.format.braces": "k&r",
|
||||||
|
"git.enableSmartCommit": true,
|
||||||
|
"git.confirmSync": false,
|
||||||
|
"git.autofetch": true,
|
||||||
|
"explorer.confirmDelete": false,
|
||||||
|
"security.workspace.trust.emptyWindow": false,
|
||||||
|
"security.workspace.trust.enabled": false,
|
||||||
|
"editor.renderWhitespace": "boundary",
|
||||||
|
"markdown.extension.print.theme": "dark",
|
||||||
|
"explorer.confirmDragAndDrop": false,
|
||||||
|
"javascript.updateImportsOnFileMove.enabled": "always",
|
||||||
|
"go.toolsManagement.autoUpdate": true,
|
||||||
|
"gitlens.plusFeatures.enabled": false,
|
||||||
|
"editor.tabSize": 4,
|
||||||
|
"editor.detectIndentation": false,
|
||||||
|
"git.allowForcePush": true,
|
||||||
|
"svelte.enable-ts-plugin": true,
|
||||||
|
"markdown-preview-enhanced.codeBlockTheme": "atom-dark.css",
|
||||||
|
"svelte.plugin.svelte.note-new-transformation": false,
|
||||||
|
"html.format.indentInnerHtml": true,
|
||||||
|
"prettier.tabWidth": 4,
|
||||||
|
"prettier.bracketSameLine": true,
|
||||||
|
"prettier.proseWrap": "never",
|
||||||
|
"[svelte]": {
|
||||||
|
"editor.defaultFormatter": "svelte.svelte-vscode"
|
||||||
|
},
|
||||||
|
"editor.cursorStyle": "block-outline",
|
||||||
|
"[blade]": {
|
||||||
|
"editor.defaultFormatter": "shufo.vscode-blade-formatter"
|
||||||
|
},
|
||||||
|
"[php]": {
|
||||||
|
"editor.defaultFormatter": "bmewburn.vscode-intelephense-client"
|
||||||
|
},
|
||||||
|
"terminal.integrated.fontFamily": "monospace",
|
||||||
|
"codetogether.userName": "Kato",
|
||||||
|
"workbench.colorTheme": "Gatito Theme",
|
||||||
|
"typescript.updateImportsOnFileMove.enabled": "always",
|
||||||
|
"git.ignoreRebaseWarning": true,
|
||||||
|
"glassit.alpha": 255,
|
||||||
|
"glassit.step": 5,
|
||||||
|
"liveServer.settings.donotShowInfoMsg": true,
|
||||||
|
"git.openRepositoryInParentFolders": "always",
|
||||||
|
|
||||||
|
"html.format.wrapAttributes": "preserve-aligned",
|
||||||
|
"html.format.wrapLineLength": 0,
|
||||||
|
"prettier.printWidth": 3000,
|
||||||
|
"window.zoomLevel": 2,
|
||||||
|
"[vue]": {
|
||||||
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||||
|
},
|
||||||
|
"[typescriptreact]": {
|
||||||
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||||
|
},
|
||||||
|
"[typescript]": {
|
||||||
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||||
|
},
|
||||||
|
"[json]": {
|
||||||
|
"editor.defaultFormatter": "vscode.json-language-features"
|
||||||
|
},
|
||||||
|
"[javascript]": {
|
||||||
|
"editor.defaultFormatter": "vscode.typescript-language-features"
|
||||||
|
},
|
||||||
|
"[html]": {
|
||||||
|
"editor.defaultFormatter": "vscode.html-language-features"
|
||||||
|
},
|
||||||
|
"[jsonc]": {
|
||||||
|
"editor.defaultFormatter": "vscode.json-language-features"
|
||||||
|
},
|
||||||
|
"[css]": {
|
||||||
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||||
|
},
|
||||||
|
}
|
Loading…
Reference in New Issue