diff options
author | Karel Kočí <cynerd@email.cz> | 2016-09-19 07:24:31 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2016-09-19 07:29:18 +0200 |
commit | 2d7620f54e2fe0226f73bbb02ce470b12f936f61 (patch) | |
tree | 781e63940594650afd07ba99528327eb5d1feaa2 | |
parent | 7f94b21f9764fea1b910ff33027110c733771af6 (diff) | |
download | myconfigs-2d7620f54e2fe0226f73bbb02ce470b12f936f61.tar.gz myconfigs-2d7620f54e2fe0226f73bbb02ce470b12f936f61.tar.bz2 myconfigs-2d7620f54e2fe0226f73bbb02ce470b12f936f61.zip |
Update private repo
-rwxr-xr-x | install | 14 | ||||
m--------- | private | 0 |
2 files changed, 11 insertions, 3 deletions
@@ -88,6 +88,8 @@ inst() { } # TODO if on archlinux install pkgstats and other packages we would need for every feature +################################################################################# +source private/install # private files, sorry but some privacy is required. read -p "Install Bashrc? (Y/n) " if [[ $REPLY =~ ^[Yy]?$ ]]; then @@ -111,6 +113,7 @@ read -p "Install VIM scripts? (Y/n) " if [[ $REPLY =~ ^[Yy]?$ ]]; then inst vimrc ~/.vimrc inst vim/ ~/.vim + inst local/bin/vim-project-gen ~/.local/bin/vim-project-gen mkdir -p ~/.cache/vim # directory for *.swp files mkdir -p ~/.cache/vim-undo # directory for undo files echo "Please don't forget to setup YouCompleteMe" @@ -120,15 +123,20 @@ read -p "Install email synchronization? (Y/n) " if [[ $REPLY =~ ^[Yy]?$ ]]; then inst local/bin/annoyme ~/.local/bin/ inst local/sbin/annoyme-request ~/.local/sbin/ - inst local/sbin/syncemail ~/.local/sbin/ - inst config/offlineimap/ ~/.config/offlineimap inst config/systemd/user/syncemail.service ~/.config/systemd/user + inst_email_sync + # Contains: + # inst local/sbin/syncemail ~/.local/sbin/ + # inst config/offlineimap/ ~/.config/offlineimap fi read -p "Install mutt configuration? (Y/n) " if [[ $REPLY =~ ^[Yy]?$ ]]; then - inst mutt/ ~/.mutt inst urlview ~/.urlview + inst_mutt_conf + # Contains: + # inst mutt/ ~/.mutt + # inst msmtprc ~/.msmtprc fi read -p "Install i3 configuration and related tools? (Y/n) " diff --git a/private b/private -Subproject ac9aa2f0a11a3a816f70d6b7ed918f43726a6a3 +Subproject d2b3dc7ecc97451c1dae1a1d4d6b4ec484da79d |