Compare commits
No commits in common. "17d2d1acc209f9de53ad8b615042ef6f5d17f6ef" and "299cc8a8760b01bf821491092805b4fc71942f0f" have entirely different histories.
17d2d1acc2
...
299cc8a876
|
@ -30,7 +30,7 @@
|
|||
<!-- by default fontconfig assumes any unrecognized font is sans-serif, so -->
|
||||
<!-- the fonts above now have /both/ families. fix this. -->
|
||||
<!-- note that "delete" applies to the first match -->
|
||||
<!--<match>
|
||||
<match>
|
||||
<test compare="eq" name="family">
|
||||
<string>sans-serif</string>
|
||||
</test>
|
||||
|
@ -38,7 +38,7 @@
|
|||
<string>monospace</string>
|
||||
</test>
|
||||
<edit mode="delete" name="family"/>
|
||||
</match>-->
|
||||
</match>
|
||||
|
||||
<!-- emoji support -->
|
||||
<match>
|
||||
|
|
|
@ -241,6 +241,7 @@ if [ $PROFILE_IBUS -gt 0 ]; then
|
|||
export GTK_IM_MODULE=ibus
|
||||
export XMODIFIERS=@im=ibus
|
||||
export QT_IM_MODULE=ibus
|
||||
ibus-daemon -drx
|
||||
fi
|
||||
section_end
|
||||
|
||||
|
|
|
@ -26,7 +26,6 @@ ZSH_POWERLINE="${ZSH_POWERLINE:-1}"
|
|||
ZSH_PRESERVE_HISTORY="${ZSH_PRESERVE_HISTORY:-1}"
|
||||
ZSH_PRESERVE_HISTORY_IMMEDIATELY="${ZSH_PRESERVE_HISTORY_IMMEDIATELY:-1}"
|
||||
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_THEFUCK=${ZSH_THEFUCK:-1}
|
||||
|
||||
|
@ -160,15 +159,6 @@ if [ $ZSH_SYNTAX_HIGHLIGHTING -gt 0 ]; then
|
|||
fi
|
||||
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"
|
||||
if [ $ZSH_THEFUCK -gt 0 ]; then
|
||||
|
|
Loading…
Reference in New Issue