Compare commits
3 Commits
299cc8a876
...
17d2d1acc2
Author | SHA1 | Date |
---|---|---|
|
17d2d1acc2 | |
|
6776511802 | |
|
1d3036715f |
|
@ -30,7 +30,7 @@
|
||||||
<!-- by default fontconfig assumes any unrecognized font is sans-serif, so -->
|
<!-- by default fontconfig assumes any unrecognized font is sans-serif, so -->
|
||||||
<!-- the fonts above now have /both/ families. fix this. -->
|
<!-- the fonts above now have /both/ families. fix this. -->
|
||||||
<!-- note that "delete" applies to the first match -->
|
<!-- note that "delete" applies to the first match -->
|
||||||
<match>
|
<!--<match>
|
||||||
<test compare="eq" name="family">
|
<test compare="eq" name="family">
|
||||||
<string>sans-serif</string>
|
<string>sans-serif</string>
|
||||||
</test>
|
</test>
|
||||||
|
@ -38,7 +38,7 @@
|
||||||
<string>monospace</string>
|
<string>monospace</string>
|
||||||
</test>
|
</test>
|
||||||
<edit mode="delete" name="family"/>
|
<edit mode="delete" name="family"/>
|
||||||
</match>
|
</match>-->
|
||||||
|
|
||||||
<!-- emoji support -->
|
<!-- emoji support -->
|
||||||
<match>
|
<match>
|
||||||
|
|
|
@ -241,7 +241,6 @@ if [ $PROFILE_IBUS -gt 0 ]; then
|
||||||
export GTK_IM_MODULE=ibus
|
export GTK_IM_MODULE=ibus
|
||||||
export XMODIFIERS=@im=ibus
|
export XMODIFIERS=@im=ibus
|
||||||
export QT_IM_MODULE=ibus
|
export QT_IM_MODULE=ibus
|
||||||
ibus-daemon -drx
|
|
||||||
fi
|
fi
|
||||||
section_end
|
section_end
|
||||||
|
|
||||||
|
|
|
@ -26,6 +26,7 @@ ZSH_POWERLINE="${ZSH_POWERLINE:-1}"
|
||||||
ZSH_PRESERVE_HISTORY="${ZSH_PRESERVE_HISTORY:-1}"
|
ZSH_PRESERVE_HISTORY="${ZSH_PRESERVE_HISTORY:-1}"
|
||||||
ZSH_PRESERVE_HISTORY_IMMEDIATELY="${ZSH_PRESERVE_HISTORY_IMMEDIATELY:-1}"
|
ZSH_PRESERVE_HISTORY_IMMEDIATELY="${ZSH_PRESERVE_HISTORY_IMMEDIATELY:-1}"
|
||||||
ZSH_PRINT_REBOOT_REQUIRED=${ZSH_PRINT_REBOOT_REQUIRED:-0} # hacky, see below
|
ZSH_PRINT_REBOOT_REQUIRED=${ZSH_PRINT_REBOOT_REQUIRED:-0} # hacky, see below
|
||||||
|
ZSH_SYMFONY_CLI="${ZSH_SYMFONY_CLI:-$(when_binary_available symfony)}"
|
||||||
ZSH_SYNTAX_HIGHLIGHTING="${ZSH_SYNTAX_HIGHLIGHTING:-1}"
|
ZSH_SYNTAX_HIGHLIGHTING="${ZSH_SYNTAX_HIGHLIGHTING:-1}"
|
||||||
ZSH_THEFUCK=${ZSH_THEFUCK:-1}
|
ZSH_THEFUCK=${ZSH_THEFUCK:-1}
|
||||||
|
|
||||||
|
@ -159,6 +160,15 @@ if [ $ZSH_SYNTAX_HIGHLIGHTING -gt 0 ]; then
|
||||||
fi
|
fi
|
||||||
section_end
|
section_end
|
||||||
|
|
||||||
|
# symfony cli
|
||||||
|
section "symfony cli"
|
||||||
|
if [ $ZSH_SYMFONY_CLI -gt 0 ]; then
|
||||||
|
if [ -n "$(command -v symfony)" ]
|
||||||
|
then
|
||||||
|
complete -C "$(command -v symfony) self:autocomplete" symfony
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
section_end
|
||||||
|
|
||||||
section "thefuck"
|
section "thefuck"
|
||||||
if [ $ZSH_THEFUCK -gt 0 ]; then
|
if [ $ZSH_THEFUCK -gt 0 ]; then
|
||||||
|
|
Loading…
Reference in New Issue