Skip to content

Commit

Permalink
feat(nvim): add vscode support for some plugins
Browse files Browse the repository at this point in the history
This commit adds vscode support for stay-in-place and vim-visual-multi
plugins. Althought the visual-multi plugin is not working as good as the
VsCodeVim plugin, it is the best option for now.
  • Loading branch information
dgokcin committed Jan 17, 2024
1 parent 5bab6bb commit ead1990
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions nvim/lua/plugins/stay-in-place.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
return {
'gbprod/stay-in-place.nvim',
event = 'BufRead',
vscode = "true",
config = function()
local stayinplace = require("stay-in-place") -- Importing the module

Expand Down
1 change: 1 addition & 0 deletions nvim/lua/plugins/vim-visual-multi.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
return {
'mg979/vim-visual-multi',
branch = 'master',
vscode = 'true',
event = 'BufReadPost',
cond = not vim.g.vscode,
init = function()
Expand Down

0 comments on commit ead1990

Please sign in to comment.