Quantcast
Channel: Vimタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 5608

Vimプラグイン NERFTreeが便利だった

$
0
0

NERDTreeとは

vimのプラグインでvimを開きながらディレクトリをツリー表示することが出来るものです。

導入方法

vimのプラグインツール「NEOBUNDLEをインストールします。

curl https://raw.githubusercontent.com/Shougo/neobundle.vim/master/bin/install.sh | sh

vimrcを修正

~/.vimrcに以下のコードを記述する

~/.vimrc
ifhas('vim_starting')setnocompatible" Be iMproved  "Required:setruntimepath+=~/.vim/bundle/neobundle.vim/endif" Required:call neobundle#begin(expand('~/.vim/bundle/'))"LetNeoBundlemanageNeoBundle" Required:NeoBundleFetch 'Shougo/neobundle.vim'"MyBundleshere:NeoBundle'Shougo/neosnippet.vim'NeoBundle'Shougo/neosnippet-snippets'NeoBundle'tpope/vim-fugitive'NeoBundle'kien/ctrlp.vim'NeoBundle'flazz/vim-colorschemes'" You can specify revision/branch/tag.NeoBundle 'Shougo/vimshell', { 'rev' : '3787e5' }call neobundle#end()"Required:filetypepluginindenton" If there are uninstalled bundles found on startup,"thiswillconvenientlypromptyoutoinstallthem.NeoBundleCheck

NERDTreeのBundleを My Bundles here以下に追記します

NeoBundle 'scrooloose/nerdtree'

Bundleにインストール

~/.vimrcを保存してから再度vimを開きコマンドを実行

:NERDTreeToggle

これで素敵なvim生活が始まります!


Viewing all articles
Browse latest Browse all 5608

Trending Articles