Skip to content

Instantly share code, notes, and snippets.

@MrDwarf7
Created September 9, 2024 11:30
Show Gist options
  • Save MrDwarf7/2d55d1e202e8584d504d3de6cda74ba3 to your computer and use it in GitHub Desktop.
Save MrDwarf7/2d55d1e202e8584d504d3de6cda74ba3 to your computer and use it in GitHub Desktop.
{
// VIM/NEOVIM RELATED
"extensions.experimental.affinity": {
"asvetliakov.vscode-neovim": 1
},
"vscode-neovim.compositeTimeout": 200,
"vscode-neovim.compositeKeys": {
"jj": {
"command": "vscode-neovim.lua",
"args": [
[
"local code = require('vscode')",
"code.action('vscode-neovim.escape')",
"code.action('workbench.action.files.save')",
],
],
},
// "kj": {
// "command": "vscode-neovim.lua",
// "args": [
// "local code = require('vscode')",
// "code.action('vscode-neovim.escape')",
// // "code.action('workbench.action.files.save')"
// ]
// },
// "jk": {
// "command": "vscode-neovim.lua",
// "args": [
// "local code = require('vscode')",
// "code.action('vscode-neovim.escape')",
// // "code.action('workbench.action.files.save')"
// ]
// },
},
"extensions.ignoreRecommendations": true,
"vscode-neovim.revealCursorScrollLine": true,
"vscode-neovim.logLevel": "debug",
// "vscode-neovim.NVIM_APPNAME": "nvim",
//"vscode-neovim.wslDistribution": "Arch",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment