summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config/lua/getchoo/init.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/config/lua/getchoo/init.lua b/config/lua/getchoo/init.lua
index c73e88d..a919bc8 100644
--- a/config/lua/getchoo/init.lua
+++ b/config/lua/getchoo/init.lua
@@ -5,9 +5,11 @@ opt.tabstop = 2
-- https://www.reddit.com/r/neovim/comments/14n6iiy/if_you_have_treesitter_make_sure_to_disable
-- TLDR: this breaks things with treesitter indent
opt.smartindent = false
+opt.number = true
opt.wrap = true
opt.syntax = "on"
opt.termguicolors = true
+opt.mouse = "a"
local backupDir = vim.fn.stdpath("state") .. "/backup"
local b = io.open(backupDir, "r")