fix: disable mouse support
This commit is contained in:
parent
18ebafb384
commit
61966ae64a
1 changed files with 3 additions and 1 deletions
4
init.lua
4
init.lua
|
@ -105,7 +105,9 @@ vim.opt.number = true
|
|||
-- vim.opt.relativenumber = true
|
||||
|
||||
-- Enable mouse mode, can be useful for resizing splits for example!
|
||||
vim.opt.mouse = 'a'
|
||||
-- vim.opt.mouse = 'a'
|
||||
-- Disable mouse mode.
|
||||
vim.opt.mouse = ''
|
||||
|
||||
-- Don't show the mode, since it's already in the status line
|
||||
vim.opt.showmode = false
|
||||
|
|
Loading…
Reference in a new issue