Skip to content

Instantly share code, notes, and snippets.

@hicksca
Last active August 29, 2015 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hicksca/f40ba5985766cb1d6a17 to your computer and use it in GitHub Desktop.
Save hicksca/f40ba5985766cb1d6a17 to your computer and use it in GitHub Desktop.
My .vimrc (plugins I'm currently using: closetag, ctrlp, delimitMate, nerdtree, airline, fugitive, vim-javascript, vim-json, vim-markdown, sensible) Solarized color scheme set to dark
execute pathogen#infect()
syntax on
filetype plugin indent on
" Sets Solarized color scheme (this is set by defult by iterm on this machine)
syntax enable
set background=dark
colorscheme solarized
:set list lcs=tab:\|\
set number
let mapleader=","
noremap <Leader>n :NERDTreeToggle<CR>
" autocmd vimenter * NERDTree (auto opens NERDTree)
autocmd FileType html,htmldjango,jinjahtml,eruby,mako let b:closetag_html_style=1
autocmd FileType html,xhtml,xml,htmldjango,jinjahtml,eruby,mako source ~/.vim/bundle/closetag/plugin/closetag.vim
" Sets the Runtime location for Ctrlp
set runtimepath^=~/.vim/bundle/ctrlp.vim
" Allows NERDTree to use split explorer model
let NERDTreeHijackNetrw=1
let g:vim_markdown_folding_disabled=1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment