-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathinit-home.sh
executable file
·54 lines (41 loc) · 1.45 KB
/
init-home.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
45
46
47
48
49
50
51
52
53
54
# For Ubuntu Only
sudo apt-get install python ctags
####################
### Vim settings ###
####################
# apt-vim
curl -sL https://raw.githubusercontent.com/egalpin/apt-vim/master/install.sh | sh
# nerdtree
PATH=$PATH:.vimpkg/bin apt-vim install -y https://github.com/scrooloose/nerdtree.git
# Vundle #
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
# vimrc #
git clone https://github.com/dayeol/vim rQ3RFv
cp -R rQ3RFv/.vim ~/
cp rQ3RFv/.vimrc ~/
# oh-my-zsh theme #
cp rQ3RFv/dayeol.zsh-theme ~/.oh-my-zsh/themes/
cp rQ3RFv/tmux.conf ~/.tmux.conf
sed "s/robbyrussell/dayeol/g" -i ~/.zshrc
# tmux plugin for oh-my-zsh
sed "s/plugins=(/plugins=(tmux\ /g" -i ~/.zshrc
# clean repo
rm -rf rQ3RFv
# install plugins #
vim +PluginInstall +qall
# CtrlP #
git clone https://github.com/kien/ctrlp.vim.git ~/.vim/bundle/ctrlp.vim
# set vimdiff as difftool #
git config --global diff.tool vimdiff
git config --global difftool.prompt false
git config --global alias.d difftool
# git config #
git config --global core.editor /usr/bin/vim
git config --global user.name "Dayeol Lee"
git config --global user.email "[email protected]"
# TMUX setting #
git clone https://github.com/NHDaly/tmux-better-mouse-mode ~/tmux-better-mouse-mode
#echo "run-shell ~/tmux-better-mouse-mode/scroll_copy_mode.tmux" >> ~/.tmux.conf
#echo "set-option -g status-position top" >> ~/.tmux.conf
# finish & reminder #
echo "******** You're all set! ********"