Skip to content

Instantly share code, notes, and snippets.

@kei2100
Last active December 21, 2015 08:39
Show Gist options
  • Save kei2100/6279575 to your computer and use it in GitHub Desktop.
Save kei2100/6279575 to your computer and use it in GitHub Desktop.
my vim setting
# root
yum -y install git
yum -y install mercurial
yum -y install ncurses-devel
yum -y install gcc
yum -y install ruby ruby-devel
cd /usr/local/src
hg clone https://vim.googlecode.com/hg/ vim
cd vim
./configure --with-features=huge --enable-multibyte --disable-selinux --enable-rubyinterp
make
make install
# my user
git clone https://github.com/kei2100/dotfiles.git ~/dotfiles
git clone https://github.com/Shougo/neobundle.vim ~/.vim/bundle/neobundle.vim
# ~/.bashrcに以下追加
if [ -f ~/dotfiles/.bashrc ]; then
. ~/dotfiles/.bashrc
fi
# vimでNeoBundleInstallする
# rsense
wget http://cx4a.org/pub/rsense/rsense-0.3.zip -P ~/.vim/rsense/
unzip ~/.vim/rsense/rsense-0.3.zip -d ~/.vim/rsense/
ruby ~/.vim/rsense/rsense-0.3/etc/config.rb > ~/.rsense
# macのctagsをExuberant Ctagsへ変更
brew install ctags
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment