From 85dd0a483846083d8b7c7c1cb14b7edd1eead597 Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Mon, 7 Feb 2022 20:13:56 +0100 Subject: [PATCH] vim: use tabstop = 2 for shell scripts --- config/nvim/after/ftplugin/sh.lua | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 config/nvim/after/ftplugin/sh.lua diff --git a/config/nvim/after/ftplugin/sh.lua b/config/nvim/after/ftplugin/sh.lua new file mode 100644 index 0000000..c363890 --- /dev/null +++ b/config/nvim/after/ftplugin/sh.lua @@ -0,0 +1,2 @@ +vim.opt.tabstop = 2 +