From e7239172997dbb8141686aab4792051fe1e48428 Mon Sep 17 00:00:00 2001 From: Nick Nisi Date: Wed, 10 Sep 2014 10:47:22 -0500 Subject: [PATCH] show hidden files and spellcheck md * show hidden files in NERDTree * enable spellchecking in markdown and textile files --- vim/vimrc.symlink | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/vim/vimrc.symlink b/vim/vimrc.symlink index d739239..b19f965 100644 --- a/vim/vimrc.symlink +++ b/vim/vimrc.symlink @@ -53,7 +53,7 @@ if has('autocmd') && !exists('autocommands_loaded') autocmd FileType html setlocal ts=4 sts=4 sw=4 noexpandtab indentkeys-=* autocmd FileType jade setlocal ts=2 sts=2 sw=2 noexpandtab autocmd FileType *.md.js :call SyntasticReset - autocmd FileType markdown,textile setlocal textwidth=0 wrapmargin=0 wrap + autocmd FileType markdown,textile setlocal textwidth=0 wrapmargin=0 wrap spell "autocmd WinEnter * setlocal cursorline "autocmd WinLeave * setlocal nocursorline @@ -363,6 +363,8 @@ hi def InterestingWord6 guifg=#000000 ctermfg=16 guibg=#ff2c4b ctermbg=195 " close NERDTree after a file is opened let g:NERDTreeQuitOnOpen=1 +" show hidden files in NERDTree +let NERDTreeShowHidden=1 " Toggle NERDTree nmap k :NERDTreeToggle " expand to the path of the file in the current buffer