Last active
April 10, 2019 18:34
-
-
Save tot0rokr/a2e4bf11fac0859a9dec3c18476abe01 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Tmux 설정 | |
if ! [ -e "~/.tmux.conf" ]; then | |
curl "https://gist.githubusercontent.com/TOT0RoKR/f1bfaaaa88716fd5e491f17f3038998f/raw/78b00228e0df94bb8ff02c17325d46b62883b94a/.tmux.conf" > ~/.tmux.conf | |
fi | |
# fzf 설치 | |
if ! [ -e "~/.fzf/" ]; then | |
git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf | |
~/fzf/install | |
fi | |
# zsh 설정 | |
if ! [ -e "~/.oh-my-zsh/" ]; then | |
curl -L https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh | |
fi | |
# vimrc 설정 | |
if ! [ -e "~/.vimrc" ]; then | |
curl "https://gist.githubusercontent.com/TOT0RoKR/332669f2accbbf58e766aa5b71d1068c/raw/bb09781903814bb991a312d3654e46470151f960/_vimrc" > ~/.vimrc | |
fi | |
# locale 설정 | |
export LANG=ko_KR.utf-8 | |
export LC_ALL=ko_KR.utf-8 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment