Last active
January 21, 2024 04:54
-
-
Save wayanjimmy/1c2a13037161141b9ad4953461d7a2bf to your computer and use it in GitHub Desktop.
Vscode Settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"workbench.colorTheme": "Default Light Modern", | |
"remote.SSH.remotePlatform": { | |
"ser4": "linux" | |
}, | |
"vim.normalModeKeyBindingsNonRecursive": [ | |
{ | |
"before": [ | |
"<C-p>" | |
], | |
"commands": [ | |
"workbench.action.quickOpen", | |
] | |
}, | |
{ | |
"before": [ | |
"<C-k>" | |
], | |
"commands": [ | |
"workbench.action.focusAboveGroup" | |
] | |
}, | |
{ | |
"before": [ | |
"<C-j>" | |
], | |
"commands": [ | |
"workbench.action.focusBelowGroup" | |
] | |
} | |
], | |
"workbench.sideBar.location": "right", | |
"editor.minimap.enabled": false, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment