-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.sh
executable file
·37 lines (27 loc) · 1.02 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
echo "Make sure you install: Zsh, Neovim, Tmux, Node, NPM, silversearcher-ag, fzf, direnv"
read ans
mkdir ~/sources
mkdir ~/.npm-packages
# git
git config --global user.email "[email protected]"
git config --global user.name "Brandon Bakker"
# tmux
ln -s ~/DotFiles/.tmux.conf ~/.tmux.conf
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
# zshrc
touch ~/.zsh_history
rm ~/.zshrc
ln -s ~/DotFiles/.zshrc ~/.zshrc
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ~/sources/zsh-syntax-highlighting
#neovim
mkdir -p ~/.config/nvim/
ln -s ~/DotFiles/init.vim ~/.config/nvim/init.vim
#VimPlug for neovim
curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
#Javascript Server
git clone https://github.com/sourcegraph/javascript-typescript-langserver.git ~/sources/javascript-typescript-langserver
#Xresources - urxvt
ln -s ~/DotFiles/.Xresources ~/.Xresources
touch ~/.env
npm config set prefix=$HOME/.npm-packages