Skip to content

Instantly share code, notes, and snippets.

<fontconfig>
<match>
<test name="family"><string>Noto Sans KR</string></test>
<edit name="family" mode="assign" binding="strong">
<string>Noto Sans CJK KR</string>
</edit>
</match>
<match>
<test name="family"><string>NanumGothic</string></test>
<edit name="family" mode="assign" binding="strong">
@vmfhrmfoaj
vmfhrmfoaj / _perlbrew
Last active August 15, 2018 00:30 — forked from ywatase/_perlbrew
zsh completion for perlbrew
#compdef perlbrew
typeset -A opt_args
local context state line
_arguments -C \
'(- 1 *)'{-h,--help}'[prints help]' \
'(-n --notest)'{-n,--notest}'[Skip the test suite]' \
'(-f --force)'{-f,--force}'[Force installation of a perl]' \
'(-q --quiet)'{-q,--quiet}'[Log output to a log file rather than STDOUT. This is the default.]' \