-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvimrc
More file actions
26 lines (21 loc) · 726 Bytes
/
vimrc
File metadata and controls
26 lines (21 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
runtime bundle/vim-pathogen/autoload/pathogen.vim
execute pathogen#infect()
syntax on
filetype plugin indent on
"SET LAYOUT OPTIONS
set guifont=DejaVu\ Sans\ Mono\ for\ Powerline
let g:airline_powerline_fonts = 1
if has("gui_running")
set t_Co=256
colorscheme solarized
hi MatchParen ctermbg=245 ctermfg=237 cterm=bold
endif
"vertical split bar styling
set fillchars+=vert:\
set number
"Closetag plugin, only for html and xml files
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.vim/plugin/closetag.vim
"NERDTree
nmap \e :NERDTreeTabsToggle
let g:nerdtree_tabs_open_on_console_startup=0