From d7e2a53b4214e2047686c8c60d89c3e4422b0346 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Sun, 10 Sep 2023 15:39:42 -0700 Subject: [PATCH] [neovim] Set sw and sts to 2 for Go templates --- config/nvim/after/ftplugin/gohtmltmpl.lua | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 config/nvim/after/ftplugin/gohtmltmpl.lua diff --git a/config/nvim/after/ftplugin/gohtmltmpl.lua b/config/nvim/after/ftplugin/gohtmltmpl.lua new file mode 100644 index 0000000..886a868 --- /dev/null +++ b/config/nvim/after/ftplugin/gohtmltmpl.lua @@ -0,0 +1,4 @@ +-- Eryn Wells + +vim.bo.shiftwidth = 2 +vim.bo.softtabstop = 2