aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua/sixfourtwelve/set.lua
diff options
context:
space:
mode:
authorEthan Morgan <ethan@gweithio.com>2026-02-14 16:40:16 +0000
committerEthan Morgan <ethan@gweithio.com>2026-02-14 16:40:16 +0000
commitb94eefa6b58f274bb61db4e792105c3959cf2022 (patch)
tree3d2896fb46ebc769e4fea8cf4f02ce3104e1f974 /nvim/lua/sixfourtwelve/set.lua
init dotfiles and stuffHEADmaster
Diffstat (limited to 'nvim/lua/sixfourtwelve/set.lua')
-rw-r--r--nvim/lua/sixfourtwelve/set.lua30
1 files changed, 30 insertions, 0 deletions
diff --git a/nvim/lua/sixfourtwelve/set.lua b/nvim/lua/sixfourtwelve/set.lua
new file mode 100644
index 0000000..a69215d
--- /dev/null
+++ b/nvim/lua/sixfourtwelve/set.lua
@@ -0,0 +1,30 @@
+vim.o.number = true
+vim.o.laststatus = 2
+vim.o.numberwidth = 1
+vim.o.relativenumber = false
+vim.o.tabstop = 2
+vim.o.shiftwidth = 2
+vim.o.expandtab = true
+vim.o.shiftround = true
+vim.o.mouse = "a"
+vim.o.wrap = true
+
+vim.o.signcolumn = "yes"
+vim.o.syntax = "on"
+vim.o.termguicolors = true
+
+vim.opt.smartindent = false
+
+vim.opt.wrap = true
+
+vim.opt.hlsearch = false
+vim.opt.incsearch = true
+
+vim.opt.swapfile = false
+vim.opt.backup = false
+vim.opt.undodir = os.getenv("HOME") .. "/.nvim/undodir"
+vim.opt.undofile = true
+
+vim.opt.scrolloff = 8
+
+vim.opt.updatetime = 5