-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
475 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
let s:so_save = &so | let s:siso_save = &siso | set so=0 siso=0 | ||
argglobal | ||
setlocal keymap= | ||
setlocal noarabic | ||
setlocal autoindent | ||
setlocal backupcopy= | ||
setlocal nobinary | ||
setlocal nobreakindent | ||
setlocal breakindentopt= | ||
setlocal bufhidden= | ||
setlocal buflisted | ||
setlocal buftype= | ||
setlocal nocindent | ||
setlocal cinkeys=0{,0},0),:,0#,!^F,o,O,e | ||
setlocal cinoptions= | ||
setlocal cinwords=if,else,while,do,for,switch | ||
setlocal colorcolumn= | ||
setlocal comments=s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:- | ||
setlocal commentstring=/*%s*/ | ||
setlocal complete=.,w,b,u,t,i | ||
setlocal concealcursor= | ||
setlocal conceallevel=0 | ||
setlocal completefunc= | ||
setlocal nocopyindent | ||
setlocal cryptmethod= | ||
setlocal nocursorbind | ||
setlocal nocursorcolumn | ||
setlocal nocursorline | ||
setlocal define= | ||
setlocal dictionary= | ||
setlocal nodiff | ||
setlocal equalprg= | ||
setlocal errorformat= | ||
setlocal expandtab | ||
if &filetype != 'markdown' | ||
setlocal filetype=markdown | ||
endif | ||
setlocal fixendofline | ||
setlocal foldcolumn=0 | ||
setlocal foldenable | ||
setlocal foldexpr=0 | ||
setlocal foldignore=# | ||
setlocal foldlevel=0 | ||
setlocal foldmarker={{{,}}} | ||
setlocal foldmethod=manual | ||
setlocal foldminlines=1 | ||
setlocal foldnestmax=20 | ||
setlocal foldtext=foldtext() | ||
setlocal formatexpr= | ||
setlocal formatoptions=tcq | ||
setlocal formatlistpat=^\\s*\\d\\+[\\]:.)}\\t\ ]\\s* | ||
setlocal grepprg= | ||
setlocal iminsert=0 | ||
setlocal imsearch=0 | ||
setlocal include= | ||
setlocal includeexpr= | ||
setlocal indentexpr= | ||
setlocal indentkeys=0{,0},:,0#,!^F,o,O,e | ||
setlocal noinfercase | ||
setlocal iskeyword=@,48-57,_,192-255 | ||
setlocal keywordprg= | ||
setlocal nolinebreak | ||
setlocal nolisp | ||
setlocal lispwords= | ||
setlocal nolist | ||
setlocal makeprg= | ||
setlocal matchpairs=(:),{:},[:] | ||
setlocal nomodeline | ||
setlocal modifiable | ||
setlocal nrformats=bin,octal,hex | ||
setlocal nonumber | ||
setlocal numberwidth=4 | ||
setlocal omnifunc= | ||
setlocal path= | ||
setlocal nopreserveindent | ||
setlocal nopreviewwindow | ||
setlocal quoteescape=\\ | ||
setlocal noreadonly | ||
setlocal norelativenumber | ||
setlocal norightleft | ||
setlocal rightleftcmd=search | ||
setlocal noscrollbind | ||
setlocal shiftwidth=3 | ||
setlocal noshortname | ||
setlocal nosmartindent | ||
setlocal softtabstop=0 | ||
setlocal nospell | ||
setlocal spellcapcheck=[.?!]\\_[\\])'\"\ \ ]\\+ | ||
setlocal spellfile= | ||
setlocal spelllang=en | ||
setlocal statusline= | ||
setlocal suffixesadd= | ||
setlocal swapfile | ||
setlocal synmaxcol=3000 | ||
if &syntax != 'markdown' | ||
setlocal syntax=markdown | ||
endif | ||
setlocal tabstop=6 | ||
setlocal tagcase= | ||
setlocal tags= | ||
setlocal textwidth=290 | ||
setlocal thesaurus= | ||
setlocal noundofile | ||
setlocal undolevels=-123456 | ||
setlocal nowinfixheight | ||
setlocal nowinfixwidth | ||
setlocal wrap | ||
setlocal wrapmargin=0 | ||
silent! normal! zE | ||
let s:l = 5 - ((4 * winheight(0) + 16) / 32) | ||
if s:l < 1 | let s:l = 1 | endif | ||
exe s:l | ||
normal! zt | ||
5 | ||
normal! 014| | ||
let &so = s:so_save | let &siso = s:siso_save | ||
doautoall SessionLoadPost | ||
" vim: set ft=vim : |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.