From c5138201d16b8fcb5d46253742c748d7e48551af Mon Sep 17 00:00:00 2001 From: tdback Date: Fri, 15 Nov 2024 20:16:41 -0500 Subject: [PATCH] ensure indentation is two spaces when using elm --- after/ftplugin/elm.lua | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 after/ftplugin/elm.lua diff --git a/after/ftplugin/elm.lua b/after/ftplugin/elm.lua new file mode 100644 index 0000000..78c5eeb --- /dev/null +++ b/after/ftplugin/elm.lua @@ -0,0 +1,3 @@ +vim.opt_local.shiftwidth = 2 +vim.opt_local.tabstop = 2 +vim.opt_local.expandtab = true