1
0
Fork 0

feat: Disable mouse in neovim

This commit is contained in:
lwad 2024-05-15 19:18:32 +01:00
parent 1ec2f0822a
commit 5a8923dc04
1 changed files with 2 additions and 0 deletions

View File

@ -11,6 +11,8 @@ vim.opt.smartindent = true
vim.g.mapleader = " "
vim.g.maplocalleader = " "
vim.opt.mouse = nil
vim.keymap.set("v", "p", "\"_dP", {})
vim.keymap.set("v", ">", ">gv", {})