Explorar el Código

nixpkgs/neovim: disable mouse support

Thomas Dy hace 2 años
padre
commit
4b49dd4c92
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. 3 0
      .config/nixpkgs/neovim/settings.lua

+ 3 - 0
.config/nixpkgs/neovim/settings.lua

@@ -43,3 +43,6 @@ vim.o.modeline = false
 
 -- show preview of lines when using :s
 vim.o.inccommand = 'split'
+
+-- disable mouse support
+vim.o.mouse = false