From 67af97c535a177a21e8011bbef86252005b79dac Mon Sep 17 00:00:00 2001 From: anth64 Date: Sat, 22 Jun 2024 15:30:36 -0400 Subject: [PATCH] disable mouse, use tabs insteaed of spaces. --- lua/anth64/set.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lua/anth64/set.lua b/lua/anth64/set.lua index 141b8ec..6dd1c3a 100644 --- a/lua/anth64/set.lua +++ b/lua/anth64/set.lua @@ -1,4 +1,5 @@ vim.opt.guicursor = "" +vim.opt.mouse = "" vim.opt.nu = true vim.opt.relativenumber = true @@ -6,7 +7,7 @@ vim.opt.relativenumber = true vim.opt.tabstop = 2 vim.opt.softtabstop = 2 vim.opt.shiftwidth = 2 -vim.opt.expandtab = true +vim.opt.expandtab = false vim.opt.smartindent = true