dotfiles/Makefile

47 lines
1.2 KiB
Makefile
Raw Normal View History

2018-04-05 12:34:27 +02:00
tmux:
ln -s ~/.dotfiles/tmux ~/.tmux
ln -s ~/.dotfiles/tmux/tmux.conf ~/.tmux.conf
vim:
ln -s ~/.dotfiles/vim ~/.vim
2018-04-05 13:14:10 +02:00
ln -s ~/.dotfiles/vim/.vimrc ~/.vimrc
2018-04-05 12:34:27 +02:00
sudo pip3 uninstall greenlet
sudo pip3 install neovim
2018-04-05 13:14:10 +02:00
#sudo pip2 uninstall greenlet
2018-04-05 12:34:27 +02:00
sudo pacman -S python-greenlet
2018-04-05 13:17:50 +02:00
mkdir ~/.dotfiles/vim/.swp
mkdir ~/.dotfiles/vim/.undo
mkdir ~/.dotfiles/vim/.backup
2018-04-05 12:34:27 +02:00
git:
2018-04-05 14:18:37 +02:00
rm ~/.gitconfig
2018-04-05 12:34:27 +02:00
ln -s ~/.dotfiles/.gitconfig ~/.gitconfig
2018-04-05 14:17:45 +02:00
xresources:
2018-04-05 14:18:37 +02:00
rm ~/.Xresources
2018-04-05 14:17:45 +02:00
ln -s ~/.dotfiles/.Xresources ~/.Xresources
2018-04-05 12:34:27 +02:00
zsh:
ln -s ~/.dotfiles/zsh ~/.zim
zsh zimsetup.zsh
rm ~/.zimrc
ln -s ~/.dotfiles/zsh/.zimrc ~/.zimrc
2018-04-05 14:08:05 +02:00
i3: dep
2018-04-05 12:34:27 +02:00
ln -s ~/.dotfiles/i3 ~/.config/i3
2018-04-05 16:17:46 +02:00
cd i3/conf/ && ./build.sh
2018-04-05 12:34:27 +02:00
.PHONY: clean zsh git vim tmux i3
clean:
rm -rf ~/.vim ~/.vimrc ~/.tmux ~/.tmux.conf ~/.gitconfig ~/.config/i3
rm -rf ~/.zshrc ~/.zimrc ~/.zim ~/.zlogin
2018-04-05 14:08:05 +02:00
dep:
git clone https://aur.archlinux.org/powerline-fonts-git.git /tmp/powerline-font
cd /tmp/powerline-font && makepkg -Acs && sudo pacman -U *.pkg.*
git clone https://aur.archlinux.org/bumblebee-status-git.git /tmp/bumblebee
cd /tmp/bumblebee && makepkg -Acs && sudo pacman -U *.pkg.*
2018-04-05 16:17:46 +02:00
sudo pacman -S awesome-terminal-fonts perl-anyevent-i3 perl-json-xs
2018-04-05 14:08:05 +02:00
2018-04-05 14:17:45 +02:00
all: clean tmux vim git zsh i3 xresources