🔧 Small config changes vscode

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

View file

@ -1,96 +1,107 @@
{ {
"security.workspace.trust.untrustedFiles": "open", "security.workspace.trust.untrustedFiles": "open",
"editor.minimap.enabled": false, "editor.minimap.enabled": false,
"git.openRepositoryInParentFolders": "always", "git.openRepositoryInParentFolders": "always",
"editor.smoothScrolling": true, "editor.smoothScrolling": true,
"workbench.list.smoothScrolling": true, "workbench.list.smoothScrolling": true,
"terminal.integrated.smoothScrolling": true, "terminal.integrated.smoothScrolling": true,
"terminal.integrated.fontSize": 16, "terminal.integrated.fontSize": 16,
"workbench.startupEditor": "none", "workbench.startupEditor": "newUntitledFile",
"editor.fontSize": 17.75, "editor.fontSize": 17.75,
"editor.cursorBlinking": "solid", "editor.cursorBlinking": "solid",
"editor.renderWhitespace": "all", "editor.formatOnSave": true,
"code-eol.newlineCharacter": "↵", "editor.defaultFormatter": "esbenp.prettier-vscode",
"code-eol.returnCharacter": "↵", "[javascript]": {
"code-eol.crlfCharacter": "↵", "editor.defaultFormatter": "esbenp.prettier-vscode"
"editor.cursorSmoothCaretAnimation": "on", },
"editor.cursorSurroundingLines": 21, "editor.renderWhitespace": "all",
"editor.cursorStyle": "block", "code-eol.newlineCharacter": "↵",
"editor.lineNumbers": "relative", "code-eol.returnCharacter": "↵",
"editor.fontFamily": "'Fira Code iScript', Consolas, 'Courier New', monospace", "code-eol.crlfCharacter": "↵",
"editor.fontLigatures": true, "files.trimTrailingWhitespace": true,
"editor.fontWeight": "normal", "editor.cursorSmoothCaretAnimation": "on",
"workbench.sideBar.location": "right", "editor.cursorSurroundingLines": 21,
"glassit.alpha": 230, "editor.cursorStyle": "block",
"workbench.colorTheme": "Nord Deep", "editor.lineNumbers": "relative",
"window.restoreWindows": "none", "editor.fontFamily": "'Fira Code iScript', Consolas, 'Courier New', monospace",
"go.toolsManagement.autoUpdate": true, "editor.fontLigatures": true,
"vim.easymotion": true, "editor.fontWeight": "normal",
"vim.incsearch": true, "workbench.sideBar.location": "right",
"vim.useSystemClipboard": true, "glassit.alpha": 230,
"vim.useCtrlKeys": true, "workbench.colorTheme": "Nord Deep",
"vim.hlsearch": true, "window.restoreWindows": "none",
"vim.insertModeKeyBindings": [], "go.toolsManagement.autoUpdate": true,
"vim.normalModeKeyBindingsNonRecursive": [ "vim.easymotion": true,
{ "vim.incsearch": true,
"before": ["<leader>", "'"], "vim.useSystemClipboard": true,
"commands": ["workbench.action.toggleSidebarVisibility", "workbench.files.action.focusFilesExplorer"], "vim.useCtrlKeys": true,
}, "vim.hlsearch": true,
{ "vim.insertModeKeyBindings": [],
"before": ["n", "v"], "vim.normalModeKeyBindingsNonRecursive": [
"commands": [
"workbench.action.splitEditor",
"workbench.action.nextEditorInGroup"
]
},
{
"before": ["<Ctrl+k>"],
"commands": ["editor.action.insertCursorAbove"]
},
{
"before": ["<Ctrl+j>"],
"commands": ["editor.action.insertCursorBelow"]
}
],
"vim.leader": "<space>",
"vim.handleKeys": {
"<C-a>": false,
"<C-f>": false
},
"extensions.experimental.affinity": {
"vscodevim.vim": 1
},
"window.menuBarVisibility": "toggle",
"editor.tokenColorCustomizations": {
"textMateRules": [
{ {
"scope": [ "before": ["<leader>", "'"],
//following will be in italic (=FlottFlott) "commands": [
"comment", "workbench.action.toggleSidebarVisibility",
"entity.name.type.class", //class names "workbench.files.action.focusFilesExplorer"
"keyword", //import, export, return ]
"constant", //String, Number, Boolean, this, super
"storage.modifier", //static keyword
"storage.type.class.js", //class keyword
],
"settings": {
"fontStyle": "italic"
}
}, },
{ {
"scope": [ "before": ["n", "v"],
//following will be excluded from italics (VSCode has some defaults for italics) "commands": [
"invalid", "workbench.action.splitEditor",
"keyword.operator", "workbench.action.nextEditorInGroup"
"constant.numeric.css", ]
"keyword.other.unit.px.css", },
"constant.numeric.decimal.js", {
"constant.numeric.json" "before": ["<Ctrl+k>"],
], "commands": ["editor.action.insertCursorAbove"]
"settings": { },
"fontStyle": "" {
} "before": ["<Ctrl+j>"],
"commands": ["editor.action.insertCursorBelow"]
} }
] ],
"vim.leader": "<space>",
"vim.handleKeys": {
"<C-a>": false,
"<C-f>": false
},
"extensions.experimental.affinity": {
"vscodevim.vim": 1
},
"window.menuBarVisibility": "toggle",
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
//following will be in italic (=FlottFlott)
"comment",
"entity.name.type.class", //class names
"keyword", //import, export, return
"constant", //String, Number, Boolean, this, super
"storage.modifier", //static keyword
"storage.type.class.js" //class keyword
],
"settings": {
"fontStyle": "italic"
}
},
{
"scope": [
//following will be excluded from italics (VSCode has some defaults for italics)
"invalid",
"keyword.operator",
"constant.numeric.css",
"keyword.other.unit.px.css",
"constant.numeric.decimal.js",
"constant.numeric.json"
],
"settings": {
"fontStyle": ""
}
}
]
},
"prettier.singleQuote": true,
"prettier.configPath": "./.prettierrc"
} }
}