-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.sh
45 lines (36 loc) · 850 Bytes
/
init.sh
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
#!/bin/sh
# ::::::::::::::::::::::::::::::::::::::::
# 環境構築 on Ubuntu
# ::::::::::::::::::::::::::::::::::::::::
# --- install apps
echo -e "\e[31m ::: 1. Install apps via apt \e[m"
cd ./AppInit/
sh init_ubuntu.sh
cd ../
# --- setup tmux configs
echo -e "\e[31m ::: 2. Setup tmux configs \e[m"
cd ./Tmux/
zsh make_link.sh
cd ../
# --- setup zsh configs
echo -e "\e[31m ::: 3. Setup zsh configs \e[m"
cd ./Shell/
zsh zshrc_init.sh
cd ../
# --- setup vim configs
echo -e "\e[31m ::: 4. Setup vim configs \e[m"
cd ./Vim/
zsh install_vim_zsh_alone.sh
cd ../
# --- setup others settings.
echo -e "\e[31m ::: Ex. Setup others configs \e[m"
echo "input password for changing login shell."
chsh -s $(which zsh)
echo "reload .zshrc"
source ~/.zshrc
echo " "
echo " "
echo -e "\e[31m Done setup. hello myworld. \e[m"
echo ""
echo " "
echo " "