diff options
Diffstat (limited to 'nvim/lua/sixfourtwelve/set.lua')
| -rw-r--r-- | nvim/lua/sixfourtwelve/set.lua | 30 |
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 |