dotfiles/vscode/settings.json

96 lines
2.8 KiB
JSON
Raw Normal View History

2022-03-19 11:03:31 +00:00
{
2022-08-30 09:16:26 +01:00
"editor.fontFamily": "Liga Liberation Mono",
2022-03-19 11:03:31 +00:00
"editor.fontLigatures": true,
2022-07-09 10:54:29 +01:00
"editor.fontSize": 14,
2022-08-30 09:16:26 +01:00
"editor.fontWeight": 400,
2022-03-19 11:03:31 +00:00
"editor.formatOnPaste": false,
"editor.wordWrap": "on",
2022-05-01 18:13:38 +01:00
"editor.cursorBlinking": "smooth",
"editor.smoothScrolling": true,
"editor.formatOnSave": true,
"editor.bracketPairColorization.enabled": true,
2022-08-30 09:16:26 +01:00
"editor.experimental.stickyScroll.enabled": true,
"terminal.integrated.fontFamily": "Liga Liberation Mono",
"terminal.integrated.fontSize": 14,
2022-05-01 18:13:38 +01:00
"terminal.integrated.fontWeight": "400",
"terminal.integrated.tabs.enabled": true,
2022-07-02 13:39:56 +01:00
"debug.console.fontFamily": "Jetbrains Mono",
2022-03-19 11:03:31 +00:00
"debug.console.fontSize": 12,
2022-05-01 18:13:38 +01:00
"explorer.confirmDelete": false,
"workbench.list.smoothScrolling": true,
"workbench.startupEditor": "none",
"workbench.colorCustomizations": {
"scrollbar.shadow": "#ffffff00"
},
2022-08-30 09:16:26 +01:00
"todo-tree.highlights.defaultHighlight": {
"icon": "alert",
"background": "#112616",
"foreground": "#bde000"
},
"diffEditor.codeLens": true,
"git.mergeEditor": false,
2022-05-01 18:13:38 +01:00
"workbench.iconTheme": "material-icon-theme",
"npm.enableRunFromFolder": true,
"security.workspace.trust.untrustedFiles": "open",
2022-03-19 11:03:31 +00:00
"files.trimFinalNewlines": true,
"vim.statusBarColorControl": false,
"vim.leader": "/",
"vim.useSystemClipboard": true,
"vim.highlightedyank.enable": true,
"vim.highlightedyank.color": "#18e00040",
2022-08-30 09:16:26 +01:00
//"meridian.ignoreDirs": ["/img"],
2022-03-19 11:03:31 +00:00
"markdown-preview-github-styles.colorTheme": "light",
2022-08-30 09:20:40 +01:00
"markdown.styles": ["markdown-styles.css"],
2022-03-19 11:03:31 +00:00
"liveServer.settings.donotShowInfoMsg": true,
"explorer.confirmDragAndDrop": false,
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "comment",
"settings": {
2022-08-30 09:16:26 +01:00
"fontStyle": ""
2022-03-19 11:03:31 +00:00
}
}
]
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.minimap.enabled": true,
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
2022-08-30 09:16:26 +01:00
"gitlens.currentLine.scrollable": false,
2022-03-19 11:03:31 +00:00
"gitlens.advanced.messages": {
"suppressGitMissingWarning": true
},
"[shellscript]": {
2022-06-11 13:32:44 +01:00
"editor.defaultFormatter": "shakram02.bash-beautify"
2022-03-19 11:03:31 +00:00
},
2022-08-30 09:16:26 +01:00
"window.titleBarStyle": "custom",
"npm.keybindingsChangedWarningShown": true,
"debug.onTaskErrors": "debugAnyway",
2022-05-15 14:45:38 +01:00
"workbench.colorTheme": "Alien Blood ",
2022-08-30 09:16:26 +01:00
"[markdown]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
2022-03-19 11:03:31 +00:00
}