From be6b93cdde9ba7fbd36d76f6ba3eb436e439e9a8 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Fri, 31 Jan 2025 13:33:03 -0800 Subject: [PATCH] [nvim] Set shiftwidth and softtabstop to 2 spaces for HTML files Never thought I'd be *that* person, but here we are. --- config/nvim/after/ftplugin/html.lua | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 config/nvim/after/ftplugin/html.lua diff --git a/config/nvim/after/ftplugin/html.lua b/config/nvim/after/ftplugin/html.lua new file mode 100644 index 0000000..25913ef --- /dev/null +++ b/config/nvim/after/ftplugin/html.lua @@ -0,0 +1,4 @@ +-- Eryn Wells + +vim.opt_local.shiftwidth = 2 +vim.opt_local.softtabstop = 2