diff options
Diffstat (limited to '.config/nvim/after/ftplugin/haml.lua')
| -rw-r--r-- | .config/nvim/after/ftplugin/haml.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.config/nvim/after/ftplugin/haml.lua b/.config/nvim/after/ftplugin/haml.lua new file mode 100644 index 0000000..b0ca49c --- /dev/null +++ b/.config/nvim/after/ftplugin/haml.lua @@ -0,0 +1,8 @@ +local setlocal = vim.opt_local + +setlocal.expandtab = true +setlocal.tabstop = 2 +setlocal.softtabstop = 2 +setlocal.shiftwidth = 2 +setlocal.textwidth = 120 +setlocal.formatoptions:remove { "o" } |
