summaryrefslogtreecommitdiff
path: root/lua/core
diff options
context:
space:
mode:
Diffstat (limited to 'lua/core')
-rw-r--r--lua/core/autocmds.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/lua/core/autocmds.lua b/lua/core/autocmds.lua
index d77e0e71..89590454 100644
--- a/lua/core/autocmds.lua
+++ b/lua/core/autocmds.lua
@@ -36,9 +36,9 @@ lvim.autocommands = {
-- { "VimLeavePre", "*", "set title set titleold=" },
},
_filetypechanges = {
- -- { "BufWinEnter", ".tf", "setlocal filetype=terraform" },
- -- { "BufRead", "*.tf", "setlocal filetype=terraform" },
- -- { "BufNewFile", "*.tf", "setlocal filetype=terraform" },
+ { "BufWinEnter", ".tf", "setlocal filetype=terraform" },
+ { "BufRead", "*.tf", "setlocal filetype=terraform" },
+ { "BufNewFile", "*.tf", "setlocal filetype=terraform" },
{ "BufWinEnter", ".zsh", "setlocal filetype=sh" },
{ "BufRead", "*.zsh", "setlocal filetype=sh" },
{ "BufNewFile", "*.zsh", "setlocal filetype=sh" },