-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
24 lines (21 loc) · 691 Bytes
/
Makefile
File metadata and controls
24 lines (21 loc) · 691 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
DOTFILES_DIR=${HOME}/dotfiles
CONFIG_DIR=${HOME}/.config
I3_CONFIG=${CONFIG_DIR}/i3
NVIM_DIR=${CONFIG_DIR}/nvim
LILYTERM_DIR=${CONFIG_DIR}/lilyterm
BIN_DIR=${HOME}/bin
FZF_DIR=${HOME}/.fzf
PTPYTHON_DIR=${HOME}/.ptpython
VCPROMPT_URL="https://github.com/djl/vcprompt/raw/master/bin/vcprompt"
FZF_URL="https://github.com/junegunn/fzf.git"
VIM_PLUG_URL="https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim"
exa: rust
git clone https://github.com/ogham/exa
cd exa && sudo -H PATH=${HOME}/.cargo/bin make install
rust:
sudo -H curl https://sh.rustup.rs -sSf | sh
fzf:
if [ ! -d ${FZF_DIR} ]; then
git clone --depth 1 ${FZF_URL} ${FZF_DIR}
${FZF_DIR}/install --all
fi