diff --git a/plugin/autocmds.vim b/plugin/autocmds.vim
index 8f66444..4ed5738 100644
--- a/plugin/autocmds.vim
+++ b/plugin/autocmds.vim
@@ -6,10 +6,6 @@ augroup benieAugroup
   au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$")
           \ | exe "normal! g'\"" | endif
 
-  " TODO: Move this to a plugin & rename to .enter .exit
-  au BufRead,BufNewFile .env set filetype=zsh
-  au BufRead,BufNewFile .out set filetype=zsh
-
   " Highlight conflict markers in any filefile
   au FileType * :call matchadd('Todo', '^\(<<<<<<<\||||||||\|=======\|>>>>>>>\)\s\ze.*$')
 augroup END