aboutsummaryrefslogtreecommitdiff
path: root/install/install_mac.sh
blob: 3250bd6fcd371840fae8c784a9c99edd1975232c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#!/bin/sh

function dlgYN() {
    tput sc
    tput setaf 4
    printf "$1 (y/n)? "
    while :
    do
        read -n 1 -p "" YNQuestionAnswer
        if [[ $YNQuestionAnswer == "y" ]]; then
            tput rc; tput el
            printf "$1?: \e[0;32mYes\e[0m\n"
            tput sc
            eval $2=1 # Set parameter 2 of input to the return value
            break
        elif [[ $YNQuestionAnswer == "n" ]]; then
            tput rc; tput el
            printf "$1?: \e[0;31mNo\e[0m\n"
            eval $2=0 # Set parameter 2 of input to the return value
            break
        fi
    done
}

dlgYN "> Install Homebrew" res
if [ $res -eq 1 ]; then
    tput sc
    /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
    tput rc; tput ed
fi

dlgYN "> Install \"Highlight, atool, w3m, mediainfo, vim\"" res
if [ $res -eq 1 ]; then
    tput sc
    brew install highlight atool w3m mediainfo vim nodejs
    tput rc; tput ed
fi

dlgYN "> Install Oh-My-Zsh" res
if [ $res -eq 1 ]; then
    tput sc
    sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

    # Zsh-autosuggestions
    git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
    # Zsh-syntax-highlighting
    git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
    # Zsh-vi-mode
    git clone https://github.com/jeffreytse/zsh-vi-mode $ZSH_CUSTOM/plugins/zsh-vi-mode

    tput rc; tput ed
fi

dlgYN "> Install Powerline && powerlevel10k" res
if [ $res -eq 1 ]; then
    tput sc
    pip3 install pygments
    pip3 install powerline-status
    brew install romkatv/powerlevel10k/powerlevel10k
    tput rc; tput ed
fi

dlgYN "> Create symlinks" res
if [ $res -eq 1 ]; then
    CWD=$(PWD)
    tput sc
    ln -isf "$CWD/bin" ~/bin
    ln -isf "$CWD/mac/tmux.conf" ~/.tmux.conf
    ln -isf "$CWD/mac/Hyperterm/hyper.js" ~/.hyper.js
    ln -isf "$CWD/mac/Hyperterm/local" ~/.hyper_plugins/local
    ln -isf "$CWD/Common/zshrc" ~/.zshrc
    ln -isf "$CWD/Common/vimrc" ~/.vimrc
    ln -isf "$CWD/Common/vim" ~/.vim
    ln -isf "$CWD/Common/nvim" ~/.config/nvim
    ln -isf "$CWD/Common/p10k.zsh" ~/.p10k.zsh
    rm -r ~/Library/texmf/tex && ln -isf "$CWD/Common/tex" ~/Library/texmf/tex
  tput rc; tput ed
fi

tput setaf 3
echo "\nPlease install the font Roboto mono nerd, and enable it in your terminal."
echo "\nPlease run ':PlugInstall' in vim"
tput sgr0