From b94eefa6b58f274bb61db4e792105c3959cf2022 Mon Sep 17 00:00:00 2001 From: Ethan Morgan Date: Sat, 14 Feb 2026 16:40:16 +0000 Subject: init dotfiles and stuff --- nvim/lua/sixfourtwelve/set.lua | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 nvim/lua/sixfourtwelve/set.lua (limited to 'nvim/lua/sixfourtwelve/set.lua') 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 -- cgit v1.2.3