From 90da22317bc62abfd2be451b015dc06018413b42 Mon Sep 17 00:00:00 2001 From: Louie Shprung Date: Thu, 24 Nov 2022 13:17:54 -0800 Subject: Disable mouse in options --- lua/user/options.lua | 1 + 1 file changed, 1 insertion(+) (limited to 'lua/user') diff --git a/lua/user/options.lua b/lua/user/options.lua index 9a43c86..d1ffe51 100644 --- a/lua/user/options.lua +++ b/lua/user/options.lua @@ -6,6 +6,7 @@ vim.opt.shiftwidth = 4 --set shiftwidth vim.opt.smartindent = true --auto-indent vim.opt.tabstop = 4 --set tab length vim.cmd("autocmd FileType * setlocal formatoptions-=c formatoptions-=r formatoptions-=o") --disable automatic comment insertion +vim.opt.mouse = "" --disable mouse -- Fold Settings vim.opt.foldmethod = "indent" --enable fold detection -- cgit