Compare commits

...

2 Commits

Author SHA1 Message Date
ae5df119bf Nvim support 2021-11-13 23:38:31 -08:00
9df4b326ae Added ligatures to colors.sh 2021-11-13 23:37:34 -08:00
2 changed files with 13 additions and 5 deletions

View File

@ -29,6 +29,11 @@ U+E0B2 \xee\x82\xb2 Leftwards black arrowhead (U+2B82 \xe2\xae\x82 )
U+E0B3 \xee\x82\xb3 Leftwards arrowhead (U+2B83 \xe2\xae\x83 )\n\
"
echo -e "Ligatures:\n\
-> -----> => =====>
== != <= >=
"
echo -e "Default \e[39mDefault\e[0m"
echo -e "Default \e[30mBlack\e[0m"
echo -e "Default \e[31mRed\e[0m"

View File

@ -90,12 +90,15 @@
" Base customization {{{
if has("gui_running")
if has("mac")
set guifont=Iosevka-Term:h16
elseif has("win32")
set guifont=Iosevka\ Term\ Regular\ 13
if has("nvim")
else
set guifont=Iosevka\ Term\ Regular\ 13.5
if has("mac")
set guifont=Iosevka-Term:h16
elseif has("win32")
set guifont=Iosevka\ Term\ Regular\ 13
else
set guifont=Iosevka\ Term\ Regular\ 13.5
end
end
set columns=120 lines=54