From d31c4b16733c72a4da1a383a4e190051e865d67d Mon Sep 17 00:00:00 2001 From: Urbain Vaes Date: Sat, 23 Jan 2016 18:31:56 +0000 Subject: Add mutt in install file --- install.yaml | 1 + 1 file changed, 1 insertion(+) (limited to 'install.yaml') diff --git a/install.yaml b/install.yaml index fa93411..0e22ee6 100644 --- a/install.yaml +++ b/install.yaml @@ -13,6 +13,7 @@ default: - .inputrc - .latexmkrc - .mbsyncrc + - .mutt - .ncmpcpp - .surfraw.bookmarks - .urxvt -- cgit v1.2.3 From 8d389334637123dcae1ef4302f84d373f4567b98 Mon Sep 17 00:00:00 2001 From: Urbain Vaes Date: Sun, 24 Jan 2016 09:59:06 +0000 Subject: Add missing entries to install file --- install.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'install.yaml') diff --git a/install.yaml b/install.yaml index 0e22ee6..0212602 100644 --- a/install.yaml +++ b/install.yaml @@ -14,8 +14,10 @@ default: - .latexmkrc - .mbsyncrc - .mutt + - .msmtprc - .ncmpcpp - .surfraw.bookmarks + - .tmux.conf - .urxvt - .vim - .vifm @@ -25,12 +27,11 @@ default: # Special targets special: + .dunstrc: ~/.config/dunst/dunstrc .i3/config: ~/.config/i3/config .i3/i3status.conf: ~/.config/i3status/config .mr/mrconfig: ~/.mrconfig .mr/mrtrust: ~/.mrtrust - .msmtprc: ~/.msmptprc - .tmux.conf: ~/.tmux.conf .vim/vimrc: ~/.vimrc .uzbl: ~/.config/uzbl .uzbl/bookmarks: ~/.local/share/uzbl/bookmarks -- cgit v1.2.3 From 0e54dbcaeb3f20c9e189a7d10e24f3676284795d Mon Sep 17 00:00:00 2001 From: Urbain Vaes Date: Mon, 25 Jan 2016 10:37:28 +0000 Subject: Create missing directories in dotfiles deployment --- .vim/vimrc | 2 +- install.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'install.yaml') 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} -- cgit v1.2.3