From 2b07f2e07be748221a0e74459fabac53a0137deb Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Mon, 28 Nov 2022 16:53:10 +0000 Subject: [PATCH] Enable mouse in insert mode --- lua/options.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/options.lua b/lua/options.lua index 4967119c..646fd772 100644 --- a/lua/options.lua +++ b/lua/options.lua @@ -5,7 +5,7 @@ vim.g.python_indent = { continue = 'shiftwidth()', closed_paren_align_last_line = 'v:false', } -vim.opt.mouse = "nv" +vim.opt.mouse = "nvi" vim.opt.shiftwidth = 4 vim.opt.number = true vim.opt.relativenumber = true