From 14679d3e81e7c088d51ae6c16134e894491304a6 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Wed, 14 Oct 2020 16:39:37 +0200 Subject: [PATCH] [ADD][VIM] *.am filetype detection --- vim/.vim/ftdetect/automake.vim | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 vim/.vim/ftdetect/automake.vim diff --git a/vim/.vim/ftdetect/automake.vim b/vim/.vim/ftdetect/automake.vim new file mode 100644 index 0000000..5cc73b0 --- /dev/null +++ b/vim/.vim/ftdetect/automake.vim @@ -0,0 +1,2 @@ +" Use Automake filetype for `local.am` files, explicit `set` to force override +au BufNewFile,BufRead local.am set filetype=automake