From 55001e4c5f110e589c560e405aa9533520d55290 Mon Sep 17 00:00:00 2001 From: Ben O'Hara Date: Sun, 10 Nov 2013 18:32:00 +1000 Subject: [PATCH] Make eyaml as yaml --- ftdetect/eyaml.vim | 1 + plugin/settings/ctrlp.vim | 3 +++ vundles.vim | 1 + 3 files changed, 5 insertions(+) create mode 100644 ftdetect/eyaml.vim diff --git a/ftdetect/eyaml.vim b/ftdetect/eyaml.vim new file mode 100644 index 0000000..2b281fb --- /dev/null +++ b/ftdetect/eyaml.vim @@ -0,0 +1 @@ +au BufNewFile,BufRead *.eyaml setlocal ft=yaml diff --git a/plugin/settings/ctrlp.vim b/plugin/settings/ctrlp.vim index c7f5370..e9c103d 100644 --- a/plugin/settings/ctrlp.vim +++ b/plugin/settings/ctrlp.vim @@ -19,3 +19,6 @@ let g:ctrlp_prompt_mappings = { \ 'AcceptSelection("e")': [''], \ 'AcceptSelection("t")': ['', '<2-LeftMouse>'], \ } + +let g:ctrlp_match_window = 'bottom,order:btt,min:1,max:20,results:25' + diff --git a/vundles.vim b/vundles.vim index 28d8c50..448d1da 100644 --- a/vundles.vim +++ b/vundles.vim @@ -111,4 +111,5 @@ if count(g:vundles, 'misc') Bundle 'tpope/vim-markdown' Bundle 'spf13/vim-preview' Bundle 'tpope/vim-cucumber' + Bundle 'markcornick/vim-vagrant' endif