2022-06-18 00:56:41 -04:00

9 lines
148 B
Lua

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"