diff options
author | Karel Kočí <cynerd@email.cz> | 2018-01-26 15:51:03 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2018-01-26 15:51:03 +0100 |
commit | feddfdd6cab28f55ab2b5597f89f3805bac2349a (patch) | |
tree | 327a0999f85ee99f26f61218290d046a2cbd4253 /install | |
parent | dcd0e9d68dc490bb6404a897a90a9a51fbcffac1 (diff) | |
download | myconfigs-feddfdd6cab28f55ab2b5597f89f3805bac2349a.tar.gz myconfigs-feddfdd6cab28f55ab2b5597f89f3805bac2349a.tar.bz2 myconfigs-feddfdd6cab28f55ab2b5597f89f3805bac2349a.zip |
Drop bashrc and zshrc
They are replaced by shellrc package
Diffstat (limited to 'install')
-rwxr-xr-x | install | 12 |
1 files changed, 2 insertions, 10 deletions
@@ -13,18 +13,10 @@ git submodule update --init --recursive || (echo "Submodule update failed!"; exi ################################################################################# source private/install # private files, sorry but some privacy is required. -if ask "Install Bashrc"; then - inst bashrc ~/.bashrc - inst shellrc ~/.shellrc +# TODO on hosts without shellrc we might want some thin shellrc to be installed +if ask "Install shell profile"; then inst profile ~/.profile - mkdir -p ~/.bash_completions -fi - -if ask "Install zshrc"; then - inst zshrc ~/.zshrc - inst shellrc ~/.shellrc inst zprofile ~/.zprofile - mkdir -p ~/.zsh_completions fi if ask "Install GIT configuration"; then |