need to commit

This commit is contained in:
2023-01-03 22:05:09 -05:00
parent 32955b44c2
commit 20843a0630
56 changed files with 743 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
local o = vim.o
local bo = vim.bo
bo.expandtab = false
bo.tabstop = 8
bo.shiftwidth = 8
bo.autoindent = true
bo.copyindent = true

View File

@@ -0,0 +1,8 @@
local o = vim.o
local bo = vim.bo
bo.expandtab = true
bo.tabstop = 2
bo.shiftwidth = 2
bo.autoindent = true
bo.copyindent = true
vim.wo.colorcolumn = '80'

View File

@@ -0,0 +1,8 @@
local o = vim.o
local bo = vim.bo
bo.expandtab = true
bo.tabstop = 2
bo.shiftwidth = 2
bo.softtabstop = 2
bo.autoindent = true
o.colorcolumn = "80"