dotwryn/vim/formatting.vim

68 lines
2.7 KiB
VimL
Raw Normal View History

" -- Custom Format Settings ------------------------------ {{{
function FormatFileType(indent, expandtab, foldmethod, foldlevel, spell)
let &l:tabstop = a:indent
let &l:softtabstop = a:indent
let &l:shiftwidth = a:indent
let &l:expandtab = a:expandtab
let &l:foldmethod = a:foldmethod
let &l:foldlevel = a:foldlevel
let &l:spell = a:spell
endfunction
2019-09-26 22:00:03 +00:00
augroup filetype_specific_formatting
autocmd!
autocmd FileType python call FormatFileType(4, v:true, 'indent', 99, v:false)
autocmd FileType java call FormatFileType(4, v:true, 'indent', 99, v:false)
autocmd FileType cpp call FormatFileType(4, v:true, 'indent', 99, v:false)
autocmd FileType cs call FormatFileType(4, v:true, 'indent', 99, v:false)
autocmd FileType html call FormatFileType(2, v:true, 'indent', 99, v:false)
autocmd FileType javascript call FormatFileType(2, v:true, 'indent', 99, v:false)
autocmd FileType vim call FormatFileType(4, v:false, 'marker', 99, v:false)
autocmd FileType sh call FormatFileType(4, v:false, 'indent', 99, v:false)
autocmd FileType zsh call FormatFileType(4, v:false, 'indent', 99, v:false)
autocmd FileType lisp call FormatFileType(2, v:true, 'indent', 99, v:false)
autocmd FileType markdown call FormatFileType(2, v:false, 'indent', 99, v:true )
autocmd FileType tex call FormatFileType(8, v:false, 'indent', 99, v:true )
autocmd FileType postscr call FormatFileType(2, v:true, 'indent', 99, v:false)
autocmd FileType haskell call FormatFileType(2, v:true, 'indent', 99, v:false)
2019-12-31 21:26:32 +00:00
augroup end
augroup forced_filetype_recognition
autocmd BufRead,BufNewFile *.tmux setfiletype tmux
autocmd BufRead,BufNewFile *.clisp setfiletype lisp
autocmd BufRead,BufNewFile *.lsp setfiletype lisp
let g:tex_flavor = "latex"
2019-09-26 22:00:03 +00:00
augroup end
" }}}
" -- <Leader>ec to 'ExeCute' a file ---------------------- {{{
2019-09-26 22:00:03 +00:00
augroup execute_file_shortcuts
autocmd FileType tex nnoremap <Leader>ec :! pdf=$(grep -rl 'documentclass' ./ <bar> head -n 1 <bar> sed 's/\(.*\)\.tex/\1.pdf/'); $WEBBROWSER $pdf<CR>
2020-09-15 19:29:01 +00:00
autocmd FileType markdown nnoremap <Leader>ec :! $WEBBROWSER %:p<CR>
2019-09-26 22:00:03 +00:00
augroup end
" }}}
2020-10-09 22:55:04 +00:00
" -- Miscellaneous File-specific Commands ---------------- {{{
augroup latex_commands
" overwrite the <leader>t 'test' to (double) recompile the latex document.
" in case pdflatex gets in a stuck state, it is run through timeout 3
autocmd FileType tex nnoremap <Leader>t :! clear; texfile=$(grep -rl 'documentclass' ./ <bar> head -n 1); timeout 3 pdflatex $texfile && { clear; pdflatex $texfile <bar> lolcat }<CR>
augroup end
" }}}
" -- Format Override Layers ------------------------------ {{{
source $VIM_DIR/rentdynamics.vim
" }}}
syntax on