Make the mouse work as expected in nvim

This commit is contained in:
Gene Liverman 2024-01-05 15:22:12 -05:00
parent 3841505317
commit e8c8bb9905

View file

@ -11,6 +11,10 @@ vim.opt.softtabstop = 2
vim.opt.shiftwidth = 2 vim.opt.shiftwidth = 2
vim.opt.shiftround = true vim.opt.shiftround = true
-- make sure all the mouse stuff is on.
-- pressing alt to hightlight + copy/paste works like it does outside of nvim
vim.opt.mouse = "a"
vim.keymap.set("n", "<leader>h", ":nohlsearch<CR>") vim.keymap.set("n", "<leader>h", ":nohlsearch<CR>")
vim.wo.relativenumber = true vim.wo.relativenumber = true