-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
46 lines (32 loc) · 1.03 KB
/
Makefile
File metadata and controls
46 lines (32 loc) · 1.03 KB
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
build: vim-plugins
modules:
git submodule sync
git submodule update --init --recursive
modules-fetch:
git submodule foreach 'git fetch origin'
modules-update: modules-fetch
git submodule foreach 'git checkout origin/master'
vim-plugins:
cd .vim/bundle/vimproc; make
cd .vim/bundle/non-google/ycm; ./install.sh --clang-completer --system-libclang
vim-plugins-fast:
cd .vim/bundle/vimproc; make
cd .vim/bundle/non-google/ycm; ./install.sh
clean:
rm -f .vim/bundle/vimproc/autoload/vimproc_*.so
vim-config: modules
ln -s $(CURDIR)/.vimrc ~/.vimrc
ln -s $(CURDIR)/.vim ~/.vim
vim: vim-config vim-plugins
vim-fast: vim-config vim-plugins-fast
gitconfig:
ln -s $(CURDIR)/.gitconfig ~/.gitconfig
ln -s $(CURDIR)/.gitignore_global ~/.gitignore_global
mutt:
ln -s $(CURDIR)/.muttrc ~/.muttrc
ln -s $(CURDIR)/.mutt ~/.mutt
tmux:
ln -s $(CURDIR)/.tmux.conf ~/.tmux.conf
zsh:
-curl -L http://install.ohmyz.sh | sh
sed -i 's/^ZSH_THEME=".*"/ZSH_THEME="phil-gentoo"/; s|.*ZSH_CUSTOM.*|ZSH_CUSTOM=$(CURDIR)/.oh-my-zsh/custom|' ~/.zshrc