feat: bust up the project, refresh upstream

This commit is contained in:
Garrett Dawson 2024-05-24 17:48:34 -06:00
parent a3cd76746c
commit 2079778b89
47 changed files with 1446 additions and 1205 deletions

View file

@ -0,0 +1,19 @@
local set = vim.opt
set.colorcolumn = '80,120'
set.cursorline = true
set.expandtab = true
set.list = true
set.shiftwidth = 2
set.splitbelow = true
set.splitright = true
set.swapfile = false
set.tabstop = 2
set.textwidth = 80
set.wrap = false
set.writebackup = false
vim.o.inccommand = 'nosplit'
vim.o.completeopt = 'menuone,noselect'
-- vim: ts=2 sts=2 sw=2 et