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 -->
|
<!-- 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,6 +241,7 @@ 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,7 +26,6 @@ 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}
|
||||||
|
|
||||||
|
@ -160,15 +159,6 @@ 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