mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-05-08 04:34:00 +02:00
Merge ccf8bd0e89 into 5667161d49
This commit is contained in:
commit
ebdfee6aa8
3 changed files with 23 additions and 0 deletions
4
custom/ip.zsh
Normal file
4
custom/ip.zsh
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
function whatismyip() {
|
||||
echo `curl http://whatismyip.akamai.com/ -s`
|
||||
}
|
||||
|
||||
|
|
@ -91,3 +91,9 @@ bindkey "^[m" copy-prev-shell-word
|
|||
## Fix weird sequence that rxvt produces
|
||||
#bindkey -s '^[[Z' '\t'
|
||||
#
|
||||
|
||||
#Completion in the middle of a line
|
||||
bindkey '^i' expand-or-complete-prefix
|
||||
##pushes current command on command stack and gives blank line, after that line runs command stack is popped
|
||||
bindkey "^t" push-line-or-edit
|
||||
|
||||
|
|
|
|||
13
themes/sankara.zsh-theme
Normal file
13
themes/sankara.zsh-theme
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
if [ $UID -eq 0 ]; then NCOLOR="red"; else NCOLOR="green"; fi
|
||||
local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})"
|
||||
|
||||
PROMPT='%{$fg[$NCOLOR]%}%n%{$fg[green]%}@%m:%40<...<%{$reset_color%} %~ \
|
||||
%{$fg[red]%}%(!.#.»)%{$reset_color%} '
|
||||
RPROMPT='%{$fg[red]%}«%{$reset_color%} $(git_prompt_info) %F{blue} %F{green}%D{%L:%M} %F{yellow}%D{%p}%f'
|
||||
|
||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[green]%}±%{$fg[yellow]%}"
|
||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} "
|
||||
ZSH_THEME_GIT_PROMPT_CLEAN=""
|
||||
ZSH_THEME_GIT_PROMPT_DIRTY="⚡"
|
||||
|
||||
export GREP_COLOR='1;35'
|
||||
Loading…
Add table
Add a link
Reference in a new issue