2017-10-24 09:39:53 +00:00
|
|
|
set guioptions-=T
|
|
|
|
set guioptions-=m
|
2017-11-16 13:09:18 +00:00
|
|
|
set guioptions-=e
|
2017-10-24 09:39:53 +00:00
|
|
|
|
2017-12-19 14:46:02 +00:00
|
|
|
set cursorline " Highlight cursor line
|
|
|
|
|
2018-10-22 08:30:58 +00:00
|
|
|
let g:only_generic_hl=1
|
|
|
|
|
|
|
|
com! Dark silent! let g:colors_name_bak = g:colors_name
|
2019-06-25 07:59:01 +00:00
|
|
|
\ | let g:ayucolor="dark"
|
2018-10-22 08:30:58 +00:00
|
|
|
\ | let g:arcadia_Daybreak=0
|
|
|
|
\ | let g:arcadia_Midnight=1
|
|
|
|
\ | let g:alduin_Shout_Become_Ethereal=1
|
2018-11-01 18:12:34 +00:00
|
|
|
\ | set bg=dark
|
2019-02-15 08:19:21 +00:00
|
|
|
\ | silent! exec "colorscheme ".g:colors_name_bak
|
2019-02-08 09:31:14 +00:00
|
|
|
\ | silent! delc PaperColor
|
2018-10-22 08:30:58 +00:00
|
|
|
com! Light silent! let g:colors_name_bak = g:colors_name
|
2019-06-25 07:59:01 +00:00
|
|
|
\ | let g:ayucolor="light"
|
2018-10-22 08:30:58 +00:00
|
|
|
\ | let g:arcadia_Daybreak=1
|
|
|
|
\ | let g:arcadia_Midnight=0
|
|
|
|
\ | let g:alduin_Shout_Become_Ethereal=0
|
2018-11-01 18:12:34 +00:00
|
|
|
\ | set bg=light
|
2019-02-15 08:19:21 +00:00
|
|
|
\ | silent! exec "colorscheme ".g:colors_name_bak
|
2019-02-08 09:31:14 +00:00
|
|
|
\ | silent! delc PaperColor
|
2018-10-22 08:30:58 +00:00
|
|
|
|
|
|
|
com! Ayu colorscheme ayu
|
|
|
|
com! Arcadia colorscheme arcadia
|
|
|
|
com! Alduin colorscheme alduin
|
|
|
|
com! Moria colorscheme moria
|
|
|
|
com! Molokai colorscheme molokai
|
|
|
|
com! Iceberg colorscheme iceberg
|
2018-10-30 15:21:00 +00:00
|
|
|
com! Papercolor colorscheme PaperColor | delc PaperColor
|
2018-10-22 08:30:58 +00:00
|
|
|
com! Firewatch colorscheme two-firewatch
|
|
|
|
|
|
|
|
if !exists('g:colors_name')
|
|
|
|
if &diff
|
|
|
|
Moria
|
|
|
|
else
|
|
|
|
Dark
|
|
|
|
Ayu
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if has("unix")
|
2018-10-24 07:49:11 +00:00
|
|
|
let g:font_temp="\\\\\\@<! \\zs\\d\\+"
|
2018-10-22 08:30:58 +00:00
|
|
|
elseif has("win32")
|
|
|
|
let g:font_temp=".*:h\\zs\\d\\+"
|
|
|
|
set linespace=0
|
|
|
|
end
|
2018-10-22 08:39:14 +00:00
|
|
|
let s:fontsize = match(&guifont, "")
|
|
|
|
|
|
|
|
function! SetFontSize(size)
|
|
|
|
if exists("g:font_temp")
|
|
|
|
let &guifont=substitute(&guifont, g:font_temp, a:size, "g")
|
|
|
|
end
|
|
|
|
endfun
|
2018-10-22 08:30:58 +00:00
|
|
|
|
|
|
|
command! -nargs=1 SetFontSize call SetFontSize(<f-args>)
|
|
|
|
command! ResetFontSize call SetFontSize(s:fontsize)
|