From 3381a366344702cd4c655c98bf0598b330bff357 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sat, 30 Jul 2022 17:32:02 -0500 Subject: [PATCH] feat(nvim): set tabs for zsh --- .nvim-environments/primary/config/after/ftplugin/zsh.lua | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .nvim-environments/primary/config/after/ftplugin/zsh.lua diff --git a/.nvim-environments/primary/config/after/ftplugin/zsh.lua b/.nvim-environments/primary/config/after/ftplugin/zsh.lua new file mode 100644 index 00000000..0db62ef7 --- /dev/null +++ b/.nvim-environments/primary/config/after/ftplugin/zsh.lua @@ -0,0 +1,2 @@ +vim.opt.expandtab = false +vim.opt_local.expandtab = false