diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-01-28 17:51:58 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-01-28 17:51:58 +0100 |
commit | b1afab6304f51c2fb4e50b6b3d9aa30562eb89d6 (patch) | |
tree | 1cd9e8a56d7621aae3939cbdd6a16e78facb4501 /lua | |
parent | 3a264a4ec142b6b2ea872e1035242303510e4969 (diff) |
fix: disable mouse click
Diffstat (limited to 'lua')
-rw-r--r-- | lua/settings/options.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/settings/options.lua b/lua/settings/options.lua index c48990e..65a4143 100644 --- a/lua/settings/options.lua +++ b/lua/settings/options.lua @@ -9,7 +9,7 @@ local options = { fileencoding = "utf-8", -- the encoding written to a file hlsearch = true, -- highlight all matches on previous search pattern ignorecase = true, -- ignore case in search patterns - mouse = "a", -- allow the mouse to be used in neovim + mouse = "", -- disable the mouse to be used in neovim pumheight = 10, -- pop up menu height showmode = false, -- we don't need to see things like -- INSERT -- anymore showtabline = 2, -- always show tabs |