Replies: 2 comments 4 replies
-
Do you mean provide a piece of |
Beta Was this translation helpful? Give feedback.
4 replies
-
vscode settings currently I'm using: "vim.insertModeKeyBindingsNonRecursive": [
{
"before": [
"j",
"k"
],
"after": [
"<Esc>"
]
}
],
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": [
"leader",
"w"
],
"commands": [
"qjump.hop"
]
},
{
"before": [
"K"
],
"commands": [
"editor.action.showHover"
]
},
{
"before": [
"g",
"h"
],
"commands": [
"editor.action.goToReferences"
]
},
{
"before": [
"g",
"d"
],
"commands": [
"editor.action.peekDefinition"
]
},
{
"before": [
"g",
"D"
],
"commands": [
"editor.action.revealDefinition"
]
},
{
"before": [
"g",
"s"
],
"commands": [
"editor.action.revealDefinitionAside"
]
},
{
"before": [
"g",
"r"
],
"commands": [
"editor.action.rename"
]
}
],
"vim.leader": " ", keybindings.json: [
{
"key": "ctrl+\\",
"command": "workbench.action.terminal.toggleTerminal"
},
{
"key": "alt+q",
"command": "workbench.action.closeActiveEditor"
},
{
"key": "alt+shift+q",
"command": "workbench.action.closeOtherEditors"
},
{
"key": "ctrl+n",
"command": "workbench.action.toggleSidebarVisibility"
},
{
"key": "alt+i",
"command": "workbench.action.nextEditorInGroup",
},
{
"key": "alt+o",
"command": "workbench.action.previousEditorInGroup",
},
] |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have been using this Neovim config and it's fantastic! I wanted to suggest starting a discussion around integrating your configuration with IdeaVim and VSCode-Neovim.
Many users, including myself, often use IDEs like IntelliJ IDEA or Visual Studio Code alongside vim, and having a consistent setup across these environments would be very helpful.
Beta Was this translation helpful? Give feedback.
All reactions