summaryrefslogtreecommitdiff
path: root/_posts
diff options
context:
space:
mode:
Diffstat (limited to '_posts')
-rw-r--r--_posts/2012-05-18-using-vim.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/_posts/2012-05-18-using-vim.md b/_posts/2012-05-18-using-vim.md
index 170650e..5b0d3d0 100644
--- a/_posts/2012-05-18-using-vim.md
+++ b/_posts/2012-05-18-using-vim.md
@@ -235,6 +235,13 @@ Now **Vim** loads all plugins from `.vim/bundle`. Install plugins:
git clone git://github.com/ervandew/supertab.git
You can install the plugins without git by downloading and expanding them to `~/.vim/bundle`.
+
+Nerdtree displays a directory tree to the right. Add this to your `.vimrc`:
+
+ " map Ctrl+D to nerdtree
+ map <C-d> :NERDTreeToggle<CR>
+
+For details consult the respective plugin documentation.
<p></p>