1
0
Fork 0
mirror of synced 2024-06-03 07:51:09 -04:00
This commit is contained in:
Maksim Pecherskiy 2014-10-28 13:46:33 -07:00
parent 9c19dd142f
commit f9e31473cd
2 changed files with 7 additions and 3 deletions

View file

@ -2,7 +2,7 @@
function! ColorSet(colorName) function! ColorSet(colorName)
if a:colorName == "default" if a:colorName == "default"
colorscheme molokai colorscheme molokai
set background=light set background=dark
let g:molokai_original=1 let g:molokai_original=1
let g:airline_theme = 'molokai' let g:airline_theme = 'molokai'
elseif a:colorName == "outside" elseif a:colorName == "outside"
@ -13,6 +13,10 @@ function! ColorSet(colorName)
colorscheme solarized colorscheme solarized
set background=dark set background=dark
let g:airline_theme = 'molokai' let g:airline_theme = 'molokai'
elseif a:colorName == "smyck"
colorscheme smyck
set background=dark
let g:airline_theme = 'molokai'
else else
echo "you fucked up" echo "you fucked up"
endif endif

View file

@ -63,11 +63,11 @@ function! WordProcessor()
"setl textwidth=80 "setl textwidth=80
"setl foldcolumn=10 "setl foldcolumn=10
"setl columns=100 "setl columns=100
:Goyo " :Goyo
endfunction endfunction
" md is markdown " md is markdown
autocmd FileType markdown,mkd call WordProcessor() "autocmd FileType markdown,mkd call WordProcessor()
"autocmd BufRead,BufNewFile *.md set filetype=markdown "autocmd BufRead,BufNewFile *.md set filetype=markdown
" "
"let g:pencil#wrapModeDefault = 'soft' " or 'hard' "let g:pencil#wrapModeDefault = 'soft' " or 'hard'