diff options
author | kylo252 <[email protected]> | 2022-01-13 12:04:22 +0100 |
---|---|---|
committer | kylo252 <[email protected]> | 2022-01-13 12:04:22 +0100 |
commit | ba6e1e5bc93bea2370778c17d32d6947a2e6ec78 (patch) | |
tree | 43bab96ce2aa103127bc3c2e15685e811b56d4ca /lua/lvim/core | |
parent | d0840511d81abc08502d3f18da89d03025dcf373 (diff) | |
parent | 8a557b90c6da7b598250b48198a972cca0ff31c2 (diff) |
Merge branch 'rolling'
Diffstat (limited to 'lua/lvim/core')
-rw-r--r-- | lua/lvim/core/autocmds.lua | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/lua/lvim/core/autocmds.lua b/lua/lvim/core/autocmds.lua index 804d7790..e10a42db 100644 --- a/lua/lvim/core/autocmds.lua +++ b/lua/lvim/core/autocmds.lua @@ -34,14 +34,7 @@ function M.load_augroups() "setlocal formatoptions-=c formatoptions-=r formatoptions-=o", }, }, - _filetypechanges = { - { "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" }, - }, + _filetypechanges = {}, _git = { { "FileType", "gitcommit", "setlocal wrap" }, { "FileType", "gitcommit", "setlocal spell" }, |