mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-05-08 04:34:00 +02:00
Merge 9c1183bb17 into 291e96dcd0
This commit is contained in:
commit
f1a19041d3
4 changed files with 127 additions and 1 deletions
4
plugins/fortune/fortune.plugin.zsh
Normal file
4
plugins/fortune/fortune.plugin.zsh
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
if type fortune &> /dev/null; then
|
||||
fortune
|
||||
echo
|
||||
fi
|
||||
6
plugins/gnu-colors/gnu-colors.plugin.zsh
Normal file
6
plugins/gnu-colors/gnu-colors.plugin.zsh
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
if type dircolors &> /dev/null; then
|
||||
eval `dircolors ~/.dir_colors`
|
||||
fi
|
||||
|
||||
# Temporary workaround for tab completion LS_COLORS; Issue #1563
|
||||
zstyle ':completion:*:default' list-colors ${(s.:.)LS_COLORS}
|
||||
|
|
@ -34,7 +34,7 @@ if which tmux &> /dev/null
|
|||
# The TERM to use for 256 color terminals.
|
||||
# Tmux states this should be screen-256color, but you may need to change it on
|
||||
# systems without the proper terminfo
|
||||
[[ -n "$ZSH_TMUX_FIXTERM_WITH_256COLOR" ]] || ZSH_TMUX_FIXTERM_WITH_256COLOR="screen-256color"
|
||||
[[ -n "$ZSH_TMUX_FIXTERM_WITH_256COLOR" ]] || ZSH_TMUX_FIXTERM_WITH_256COLOR="xterm-256color"
|
||||
|
||||
|
||||
# Get the absolute path to the current directory
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue