feat(rc): match .graphqls file extension as graphql filetype

This commit is contained in:
Gianni Chiappetta 2021-01-13 21:31:29 -05:00
parent 1c639f7810
commit d8f65bd0ec
No known key found for this signature in database
GPG Key ID: 0E83B3D88ECF5E7C

View File

@ -4,7 +4,7 @@
# Detection
# ‾‾‾‾‾‾‾‾‾
hook global BufCreate .*[.](graphql) %{
hook global BufCreate .*[.](graphqls?) %{
set-option buffer filetype graphql
}