Disable mouse mode in neovim

main
Jasper Bok 2024-02-27 18:17:49 +01:00
parent 9c83b4f6ca
commit 9db0bcee71
1 changed files with 4 additions and 0 deletions

View File

@ -26,6 +26,10 @@ vim.opt.shiftwidth = 4
-- Display invisible characters (tabs, trailing whitespace, etc.). -- Display invisible characters (tabs, trailing whitespace, etc.).
vim.opt.list = true vim.opt.list = true
-- Disable mouse mode completely, so we can select text using the
-- mouse from withint tmux.
vim.opt.mouse = ''
vim.g.mapleader = " " vim.g.mapleader = " "
-- ---------------------------------- -- ----------------------------------