disable mouse, use tabs insteaed of spaces.

This commit is contained in:
anth64
2024-06-22 15:30:36 -04:00
parent cb5612bb49
commit 67af97c535
+2 -1
View File
@@ -1,4 +1,5 @@
vim.opt.guicursor = "" vim.opt.guicursor = ""
vim.opt.mouse = ""
vim.opt.nu = true vim.opt.nu = true
vim.opt.relativenumber = true vim.opt.relativenumber = true
@@ -6,7 +7,7 @@ vim.opt.relativenumber = true
vim.opt.tabstop = 2 vim.opt.tabstop = 2
vim.opt.softtabstop = 2 vim.opt.softtabstop = 2
vim.opt.shiftwidth = 2 vim.opt.shiftwidth = 2
vim.opt.expandtab = true vim.opt.expandtab = false
vim.opt.smartindent = true vim.opt.smartindent = true