a little cleanup
This commit is contained in:
7
after/ftplugin/go.lua
Normal file
7
after/ftplugin/go.lua
Normal 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
|
7
after/ftplugin/python.lua
Normal file
7
after/ftplugin/python.lua
Normal 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
8
after/ftplugin/sh.lua
Normal 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"
|
Reference in New Issue
Block a user