fix: explicitly and completely disable mouse support

This commit is contained in:
Dan Anglin 2022-10-07 00:54:33 +01:00
parent 0cdfd34b7f
commit 41c8ebf27e
Signed by: dananglin
GPG key ID: 0C1D44CFBEE68638

View file

@ -42,7 +42,7 @@ cmd "colorscheme tokyonight-night"
-- UI and UX -- UI and UX
set.number = true -- enable line numbers set.number = true -- enable line numbers
set.relativenumber = true -- enable releative line numbers set.relativenumber = true -- enable relative line numbers
set.lazyredraw = true -- do not redraw screen when executing macros, registers, etc that have not been typed set.lazyredraw = true -- do not redraw screen when executing macros, registers, etc that have not been typed
set.splitright = true -- split vertical windows to the right set.splitright = true -- split vertical windows to the right
set.splitbelow = true -- split horizontal windows below set.splitbelow = true -- split horizontal windows below
@ -50,7 +50,8 @@ set.confirm = true -- raise a dialogue to confirm if you wish to save a f
set.cmdheight = 2 -- set the height of the command window to 2 lines. set.cmdheight = 2 -- set the height of the command window to 2 lines.
set.modelines = 5 -- the first 5 lines are checked for mode lines. set.modelines = 5 -- the first 5 lines are checked for mode lines.
set.cursorline = true -- highlight the line that the cursor is on set.cursorline = true -- highlight the line that the cursor is on
set.smartindent = true -- smart autoidenting set.smartindent = true -- smart auto-identing
set.mouse = "" -- completely disable mouse support :<
set.scrolloff = 5 set.scrolloff = 5
set.signcolumn = "number" set.signcolumn = "number"
set.completeopt = "longest,menuone" set.completeopt = "longest,menuone"