Skip to content

Instantly share code, notes, and snippets.

@atsmith813
atsmith813 / .vimrc
Last active October 3, 2023 20:06
My VIM setup
syntax on
" Add jbuilder syntax highlighting
au BufNewFile,BufRead *.json.jbuilder set ft=ruby
" Add spell check to md files
autocmd BufRead,BufNewFile *.md setlocal spell
" Set 'Ctrl+n' to NERDTree toggle
map <C-n> :NERDTreeToggle<CR>