Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added fzf
  • Loading branch information
eko committed Sep 13, 2018
1 parent 619578b commit 682c080
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .oh-my-zsh/themes/eko.zsh-theme
Expand Up @@ -4,7 +4,7 @@
MODE_INDICATOR="%{$fg_bold[yellow]%}❮%{$reset_color%}%{$fg[yellow]%}❮❮%{$reset_color%}"
local return_status="%{$fg[yellow]%}%(?..⏎)%{$reset_color%}"

PROMPT='%{$fg[cyan]%}%c$(git_prompt_info) %(!.%{$fg_bold[yellow]%}#.%{$fg_bold[white]%}☁︎)%{$reset_color%} '
PROMPT='%{$fg[cyan]%}%c$(git_prompt_info) %(!.%{$fg_bold[yellow]%}#.%{$fg_bold[white]%})%{$reset_color%} '

ZSH_THEME_GIT_PROMPT_PREFIX=" %{$fg[blue]%}git%{$reset_color%}:%{$fg[yellow]%}"
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
Expand Down
4 changes: 3 additions & 1 deletion .zshrc
Expand Up @@ -89,7 +89,9 @@ source $ZSH/oh-my-zsh.sh
[[ -f /usr/local/lib/node_modules/serverless/node_modules/tabtab/.completions/sls.zsh ]] && . /usr/local/lib/node_modules/serverless/node_modules/tabtab/.completions/sls.zsh

# Load extra dotflies
for file in ~/.{exports,aliases,sources}; do
for file in ~/.{exports,aliases,functions,sources}; do
[ -r "$file" ] && [ -f "$file" ] && source "$file";
done;
unset file;

[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh

0 comments on commit 682c080

Please sign in to comment.