diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2017-02-02 22:11:43 +0100 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2017-02-02 22:11:43 +0100 |
commit | 8002795088067e5b9f578b748f9be0089621dc30 (patch) | |
tree | eef52553d1c5d3e74731c7e2593fb06d6f65890d | |
parent | 7404993f0c385b4a7d979a99461d067ec06fd940 (diff) | |
download | vim-polyglot-8002795088067e5b9f578b748f9be0089621dc30.tar.gz vim-polyglot-8002795088067e5b9f578b748f9be0089621dc30.zip |
Fix elixir not opening with :Explore, closes #172
Diffstat (limited to '')
-rw-r--r-- | config.vim | 2 | ||||
-rw-r--r-- | ftdetect/polyglot.vim | 2 |
2 files changed, 4 insertions, 0 deletions
@@ -7,3 +7,5 @@ endif if !exists('g:vim_json_syntax_conceal') let g:vim_json_syntax_conceal = 0 endif + +let g:filetype_euphoria = 'elixir' diff --git a/ftdetect/polyglot.vim b/ftdetect/polyglot.vim index 428c14db..386086dc 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -8,6 +8,8 @@ endif if !exists('g:vim_json_syntax_conceal') let g:vim_json_syntax_conceal = 0 endif + +let g:filetype_euphoria = 'elixir' " ftdetect/ansible.vim if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'ansible') == -1 |