🔧 Small config changes vscode

This commit is contained in:
z3rOR0ne 2024-03-19 23:33:54 -07:00
parent 99edef588b
commit 4b79991e20

View file

@ -6,13 +6,19 @@
"workbench.list.smoothScrolling": true,
"terminal.integrated.smoothScrolling": true,
"terminal.integrated.fontSize": 16,
"workbench.startupEditor": "none",
"workbench.startupEditor": "newUntitledFile",
"editor.fontSize": 17.75,
"editor.cursorBlinking": "solid",
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.renderWhitespace": "all",
"code-eol.newlineCharacter": "↵",
"code-eol.returnCharacter": "↵",
"code-eol.crlfCharacter": "↵",
"files.trimTrailingWhitespace": true,
"editor.cursorSmoothCaretAnimation": "on",
"editor.cursorSurroundingLines": 21,
"editor.cursorStyle": "block",
@ -34,7 +40,10 @@
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["<leader>", "'"],
"commands": ["workbench.action.toggleSidebarVisibility", "workbench.files.action.focusFilesExplorer"],
"commands": [
"workbench.action.toggleSidebarVisibility",
"workbench.files.action.focusFilesExplorer"
]
},
{
"before": ["n", "v"],
@ -71,7 +80,7 @@
"keyword", //import, export, return
"constant", //String, Number, Boolean, this, super
"storage.modifier", //static keyword
"storage.type.class.js", //class keyword
"storage.type.class.js" //class keyword
],
"settings": {
"fontStyle": "italic"
@ -92,5 +101,7 @@
}
}
]
}
},
"prettier.singleQuote": true,
"prettier.configPath": "./.prettierrc"
}