neovim: change tabstop only in current buffer for go files

This commit is contained in:
2023-09-30 00:19:05 +03:00
parent 584dc29395
commit ae7498f888

View File

@@ -1,4 +1,4 @@
vim.opt.tabstop = 4
vim.opt.softtabstop = 4
vim.opt.shiftwidth = 4
vim.opt.expandtab = false
vim.bo.tabstop = 4
vim.bo.softtabstop = 4
vim.bo.shiftwidth = 4
vim.bo.expandtab = false