summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.vim/vimrc2
-rw-r--r--install.yaml2
2 files changed, 2 insertions, 2 deletions
diff --git a/.vim/vimrc b/.vim/vimrc
index 059e600..36b0c4f 100644
--- a/.vim/vimrc
+++ b/.vim/vimrc
@@ -39,7 +39,7 @@ Plug 'tpope/vim-surround'
Plug 'tpope/vim-unimpaired'
Plug 'tpope/vim-vinegar'
Plug 'troydm/zoomwintab.vim'
-Plug 'Valloric/YouCompleteMe', { 'do' : './install.py --clang-completer' }
+Plug 'Valloric/YouCompleteMe', { 'do' : 'python2 install.py --clang-completer' }
call plug#end()
let g:vimtex_fold_enabled=0
diff --git a/install.yaml b/install.yaml
index 0212602..b2e883c 100644
--- a/install.yaml
+++ b/install.yaml
@@ -1,6 +1,6 @@
# Commands to install / uninstall symlinks
commands:
- up: rm -rf {target} && ln -s {path}/{file} {target}
+ up: rm -rf {target} && mkdir -p $(dirname {target}) && ln -s {path}/{file} {target}
down: rm -rf {target}