set tags=./tags;/
+syntax on
+filetype plugin indent on
+
" Pathogen runtime path manipulation
"call pathogen#infect() "Using the infect method breaks ft detection
-filetype off
call pathogen#runtime_append_all_bundles()
call pathogen#helptags()
-syntax on
-filetype plugin indent on
-
"Power saving tip: powertop-homepage
let &guicursor = &guicursor . ",a:blinkon0"
let g:airline#extensions#tabline#enabled = 1
let g:airline#extensions#tagbar#enabled = 0
let g:airline#extensions#whitespace#enabled = 0
-let g:airline#extensions#branch#enabled = 0
+let g:airline#extensions#branch#enabled = 1
let g:airline#extensions#branch#use_vcscommand = 1
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"Opens the current file in ipe
-au Filetype xml map <buffer> <M-o> :call OpenIn("ipe") <CR>
+au BufRead,BufNewFile *.ipe set filetype=ipe
+au Filetype xml,ipe map <buffer> <M-o> :call OpenIn("ipe") <CR>
+au Filetype xml let g:tagbar_sort = 0
+let g:tagbar_type_xml = {
+ \ 'ctagstype' : 'xml',
+ \ 'kinds' : [
+ \ 't:Tag'
+ \ ]
+\ }
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" gnuplot
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-" closetag
+" vim-orgmode
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
-let g:unaryTagsStack = ""
-au Filetype html,xml,xsl source /usr/share/vim/vimfiles/plugin/closetag.vim
+au BufRead,BufNewFile *.org set filetype=org
+let g:org_todo_keywords=['TODO', 'FEEDBACK', 'VERIFY', '|', 'DONE', 'DELEGATED']
+let g:org_todo_keyword_faces = [['FEEDBACK', 'magenta'], ['TODO', 'yellow']]
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
let g:instant_markdown_autostart = 0
let g:instant_markdown_slow = 1
au Filetype markdown map <buffer> <F5> :InstantMarkdownPreview<CR>
+au Filetype markdown let g:tagbar_sort = 0
+
+let g:tagbar_type_markdown = {
+ \ 'ctagstype' : 'markdown',
+ \ 'kinds' : [
+ \ 'h:Heading_L1',
+ \ 'i:Heading_L2',
+ \ 'k:Heading_L3'
+ \ ]
+\ }
+
+if executable('marktag')
+ let g:tagbar_type_markdown = {
+ \ 'ctagstype' : 'markdown',
+ \ 'ctagsbin' : 'marktag',
+ \ 'kinds' : [
+ \ 'h:header'
+ \ ],
+ \ 'sro' : '.',
+ \ 'kind2scope' : {
+ \ 'h' : 'header'
+ \ },
+ \ 'scope2kind' : {
+ \ 'header' : 'h'
+ \ }
+ \ }
+end
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""