Skip to content

Instantly share code, notes, and snippets.

@amachang
Created June 15, 2012 09:55
Show Gist options
  • Save amachang/2935689 to your computer and use it in GitHub Desktop.
Save amachang/2935689 to your computer and use it in GitHub Desktop.
最低限の作業用セットアップ
sudo apt-get -y install ack-grep vim
cat << BASH_ALIASES_EOS > ~/.bash_aliases 2>&1
alias ack=ack-grep
BASH_ALIASES_EOS
cat << VIMRC_EOS > ~/.vimrc 2>&1
syntax on
set number
set expandtab
set tabstop=2
set shiftwidth=2
set softtabstop=0
set smartindent
set incsearch
VIMRC_EOS
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment