diff options
Diffstat (limited to 'ftplugin/sh.lua')
-rw-r--r-- | ftplugin/sh.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ftplugin/sh.lua b/ftplugin/sh.lua new file mode 100644 index 0000000..51e5fc1 --- /dev/null +++ b/ftplugin/sh.lua @@ -0,0 +1,6 @@ +local l = vim.opt_local + +l.expandtab = false +l.smartindent = true +l.tabstop = 8 +l.shiftwidth = 8 |