a little cleanup

This commit is contained in:
2022-06-18 00:56:41 -04:00
parent 142017e051
commit 780d341cec
7 changed files with 148 additions and 307 deletions

7
after/ftplugin/go.lua Normal file
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,7 @@
local o = vim.o
local bo = vim.bo
bo.expandtab = false
bo.tabstop = 8
bo.shiftwidth = 8
bo.autoindent = true
bo.copyindent = true

8
after/ftplugin/sh.lua Normal file
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"