From 8ffac17d68013658d5618710caddeb9c481fd87a Mon Sep 17 00:00:00 2001 From: Charles Gould Date: Thu, 13 Oct 2022 23:25:10 -0400 Subject: [PATCH] nvim: disable mouse support --- nvim/init.vim | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nvim/init.vim b/nvim/init.vim index 87faeec..de5f274 100644 --- a/nvim/init.vim +++ b/nvim/init.vim @@ -75,5 +75,9 @@ if !has('nvim') set pastetoggle= endif +" disable mouse support +" https://github.com/neovim/neovim/pull/19290 +set mouse= + " associate Jenkinsfile with groovy syntax autocmd BufNewFile,BufRead Jenkinsfile set filetype=groovy