From d8cf78b4e423d922d3e1e32fe8b15285ff20bce2 Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Fri, 25 Feb 2022 11:10:28 -0800 Subject: [PATCH] Fix indent --- neovim/lua/plugins.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/neovim/lua/plugins.lua b/neovim/lua/plugins.lua index 0c72740..d69b149 100644 --- a/neovim/lua/plugins.lua +++ b/neovim/lua/plugins.lua @@ -309,11 +309,11 @@ use({ "sheerun/vim-polyglot", config = function() vim.cmd([[ - augroup polyglot_fts - au BufRead,BufNewFile */playbooks/*.yml,*/playbooks/*.yaml set filetype=yaml.ansible - au BufRead,BufNewFile go.mod,go.sum set filetype=gomod - augroup end - ]]) + augroup polyglot_fts + au BufRead,BufNewFile */playbooks/*.yml,*/playbooks/*.yaml set filetype=yaml.ansible + au BufRead,BufNewFile go.mod,go.sum set filetype=gomod + augroup end + ]]) end, })