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