-
Notifications
You must be signed in to change notification settings - Fork 3
/
install.sh
60 lines (46 loc) · 1.46 KB
/
install.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
55
56
57
58
59
60
#!/bin/sh
Install neovim from these directions:
https://github.com/LunarVim/nvim-basic-ide
echo 'Create Symlinks'
ln -sf ~/dotfiles/.vim ~/.vim
ln -sf ~/dotfiles/.vimrc ~/.vimrc
ln -sf ~/dotfiles/.tmux.conf ~/.tmux.conf
ln -sf ~/dotfiles/.gitconfig ~/.gitconfig
ln -sf ~/dotfiles/.viminfo ~/.viminfo
ln -sf ~/dotfiles/.oh-my-zsh ~/.oh-my-zsh
ln -sf ~/dotfiles/.zshrc ~/.zshrc
ln -sf ~/dotfiles/.taskrc ~/.taskrc
ln -sf ~/dotfiles/zsh-custom ~/dotfiles/.oh-my-zsh/custom
ln -sf ~/dotfiles/nvim-basic-ide ~/.config/nvim
# tmux
bash ./scripts/install-tmux.sh
# Ack
bash ./scripts/install-ack.sh
# iterm2 Shell Integration
curl -L https://iterm2.com/misc/install_shell_integration.sh | bash
# echo 'Add Server Variables'
# echo 'ZSH_SERVER_NAME="MYSERVER"
# ZSH_SERVER_COLOR="yellow"
# ' > ~/.zshenv
# source ~/.zshenv
# source ~/.zshrc
# echo 'Install DrupalVim'
# drush dl vimrc
# ln -sf ~/.drush/vimrc/bundle/vim-plugin-for-drupal ~/.vim/bundle/vim-plugin-for-drupal
# echo 'Insall Zsh and make it the default shell'
# sudo yum install zsh
# sudo chsh -s /bin/zsh
echo 'Install fonts'
cd ~/.vim/bundle/fonts/
sudo bash install.sh
echo 'If you use iTerm2 then you need to change font settings: https://github.com/powerline/fonts/issues/44'
echo 'Updating Submodules'
echo '~/dotfiles
git submodule update --init --recursive'
echo 'If doing REST development install httpie from:
https://github.com/jkbrzt/httpie'
echo 'Make sure you load helptags with vim:
vim
:Helptags
:help drupal
'