only enable neovim mousemoveevent in neovide
This commit is contained in:
parent
2659ea15b8
commit
111ce63d9c
2 changed files with 2 additions and 1 deletions
|
@ -8,6 +8,8 @@
|
|||
vim.keymap.set('v', '<C-S-v>', '"+P') -- Paste visual mode
|
||||
vim.keymap.set('c', '<C-S-v>', '<C-R>+') -- Paste command mode
|
||||
vim.keymap.set('i', '<C-S-v>', '<ESC>l"+Pli') -- Paste insert mode
|
||||
|
||||
vim.o.mousemoveevent = true -- only enable when using neovide, because it sucks in terminal for some reason
|
||||
end
|
||||
'';
|
||||
};
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
},
|
||||
mouse_delay = 400
|
||||
})
|
||||
vim.o.mousemoveevent = false -- enable this if you want to use mouse hover for some reason (are you crazy???? this shit sucks)
|
||||
'';
|
||||
# autoCmd = [
|
||||
# {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue