From 61966ae64ab64317e29b61fc5b0f082969a3516b Mon Sep 17 00:00:00 2001 From: Renken Date: Mon, 19 Aug 2024 15:35:50 +0200 Subject: [PATCH] fix: disable mouse support --- init.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index f106d7c..c42caa1 100644 --- a/init.lua +++ b/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