From 05223ef369dd8bbfdf128fe4245d0e19cf684ae1 Mon Sep 17 00:00:00 2001 From: Victor S <32728904+ulcuber@users.noreply.github.com> Date: Tue, 28 Nov 2023 12:23:39 +0400 Subject: [PATCH] Support .env.example and etc Match `.env.example`, `.env.production`, `.env.production.local`, `.env.staging`, `.env.staging.local`, `.env.testing` and etc --- ftdetect/env.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/ftdetect/env.vim b/ftdetect/env.vim index becfa11..1fb9ff4 100644 --- a/ftdetect/env.vim +++ b/ftdetect/env.vim @@ -1 +1,2 @@ autocmd BufRead,BufNewFile *.env set ft=env +autocmd BufRead,BufNewFile .env.* set ft=env