1
0
Fork 0

nvim: disable mouse support

This commit is contained in:
tastytea 2022-08-11 21:00:48 +02:00
parent dd394120a2
commit 7a7a76d786
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ vim.o.completeopt = 'menu,menuone,noselect' -- completion popup
vim.o.autochdir = true -- change workir to current file dir
vim.o.updatetime = 500 -- fire CursorHold autocommand event
vim.o.cmdheight = 2 -- message area size
vim.o.mouse = 'nv' -- make use of mouse in these modes
-- vim.o.mouse = 'nv' -- make use of mouse in these modes
vim.o.pumheight = 10 -- maximum entries in popup menu
vim.o.smartindent = true -- indent after { and so on