From b69b9d5e175351c9a25507139954f6211f37fdd9 Mon Sep 17 00:00:00 2001 From: Max Gautier Date: Wed, 9 Aug 2023 17:18:36 +0200 Subject: Add filetype detection for eyaml files (#12659) https://github.com/voxpupuli/hiera-eyaml/ uses and produces the eyaml format, which is simply yaml with some encrypted values. It's convenient to edit the file without decrypting when not touching encrypted values (or when you don't have access to the decryption key), which is why vim should treat those files as yaml files. --- runtime/filetype.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime') diff --git a/runtime/filetype.vim b/runtime/filetype.vim index 6d2d55e3c7..4808a56d8e 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -2544,7 +2544,7 @@ au BufNewFile,BufRead *.yy,*.yxx,*.y++ setf yacc au BufNewFile,BufRead *.y call dist#ft#FTy() " Yaml -au BufNewFile,BufRead *.yaml,*.yml setf yaml +au BufNewFile,BufRead *.yaml,*.yml,*.eyaml setf yaml " Raml au BufNewFile,BufRead *.raml setf raml -- cgit v1.2.3