Skip to content

Instantly share code, notes, and snippets.

@tot0rokr
Last active April 10, 2019 18:34
Show Gist options
  • Save tot0rokr/a2e4bf11fac0859a9dec3c18476abe01 to your computer and use it in GitHub Desktop.
Save tot0rokr/a2e4bf11fac0859a9dec3c18476abe01 to your computer and use it in GitHub Desktop.
#!/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