dotfiles/vscode/settings.json

76 lines
2.2 KiB
JSON
Raw Normal View History

2022-03-19 11:03:31 +00:00
{
2022-07-02 13:39:56 +01:00
"editor.fontFamily": "Jetbrains Mono",
2022-03-19 11:03:31 +00:00
"editor.fontLigatures": true,
2022-07-02 13:39:56 +01:00
"editor.fontSize": 13,
"editor.fontWeight": 300,
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-07-02 13:39:56 +01:00
"terminal.integrated.fontFamily": "Jetbrains Mono",
2022-05-01 18:13:38 +01:00
"terminal.integrated.fontSize": 11,
"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"
},
"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-06-04 20:31:03 +01:00
"markdown.styles": ["markdown-styles.css"],
2022-03-19 11:03:31 +00:00
"markdown-preview-github-styles.colorTheme": "light",
"liveServer.settings.donotShowInfoMsg": true,
"explorer.confirmDragAndDrop": false,
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "comment",
"settings": {
2022-07-02 13:39:56 +01:00
"fontStyle": "italic"
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-05-01 18:13:38 +01:00
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-05-15 14:45:38 +01:00
"workbench.colorTheme": "Alien Blood ",
2022-05-09 17:19:55 +01:00
"window.titleBarStyle": "custom"
2022-03-19 11:03:31 +00:00
}