LoginSignup
1
1

More than 5 years have passed since last update.

簡単なvimセットアップ

Posted at

basic

下記のconfigファイルを~/.vimrcとして保存する
http://amix.dk/vim/vimrc.html

package manager

$ mkdir -p ~/.vim/autoload ~/.vim/bundle && \
curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim

~/.vimrcに下記の一行を追加する
execute pathogen#infect()

install nerdtree

cd ~/.vim/bundle
git clone https://github.com/scrooloose/nerdtree.git

install minibufexpl.vim

cd ~/.vim/bundle
git clone https://github.com/fholgado/minibufexpl.vim.git

install ctrlp.vim

cd ~/.vim/bundle
git clone https://github.com/kien/ctrlp.vim
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1