🔧 Got toggle tree working on vs codium

This commit is contained in:
z3rOR0ne 2024-03-17 20:03:52 -07:00
parent 010a50f222
commit f2f8cfb18d
2 changed files with 53 additions and 21 deletions

View file

@ -1,20 +1,24 @@
// Place your key bindings in this file to override the defaults
[
{
"key": "alt+tab",
"command": "workbench.action.nextEditor"
},
{
"key": "alt+right",
"command": "workbench.action.nextEditor"
},
{
"key": "alt+shift+tab",
"command": "workbench.action.previousEditor"
},
{
"key": "alt+left",
"command": "workbench.action.previousEditor"
}
]
{
"key": "alt+tab",
"command": "workbench.action.nextEditor"
},
{
"key": "alt+right",
"command": "workbench.action.nextEditor"
},
{
"key": "alt+shift+tab",
"command": "workbench.action.previousEditor"
},
{
"key": "alt+left",
"command": "workbench.action.previousEditor"
},
{
"key": "space '",
"command": "workbench.action.toggleSidebarVisibility",
"when": "sideBarFocus"
}
]

View file

@ -5,13 +5,41 @@
"editor.smoothScrolling": true,
"workbench.list.smoothScrolling": true,
"terminal.integrated.smoothScrolling": true,
"editor.fontSize": 16,
"editor.fontSize": 16.75,
"editor.cursorBlinking": "solid",
"editor.cursorStyle": "block",
"editor.lineNumbers": "relative",
"editor.fontFamily": "monospace",
"editor.fontWeight": "bold",
"workbench.sideBar.location": "right",
"window.menuBarVisibility": "toggle",
"glassit.alpha": 215,
"workbench.colorTheme": "Nord Deep"
"glassit.alpha": 230,
"workbench.colorTheme": "Nord Deep",
"go.toolsManagement.autoUpdate": true,
"vim.easymotion": true,
"vim.incsearch": true,
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": true,
"vim.hlsearch": true,
"vim.insertModeKeyBindings": [
{
"before": ["j", "j"],
"after": ["<Esc>"]
}
],
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["<leader>", "'"],
"commands": ["workbench.action.toggleSidebarVisibility", "workbench.files.action.focusFilesExplorer"],
},
],
"vim.leader": "<space>",
"vim.handleKeys": {
"<C-a>": false,
"<C-f>": false
},
"// To improve performance",
"extensions.experimental.affinity": {
"vscodevim.vim": 1
}
}