zoukankan      html  css  js  c++  java
  • My zsh profile!

    看到Linuxtoy上关于zsh的介绍很神奇,但是没有下定决心尝试因为面对新鲜事物的人往往是胆怯的!

    今天在cygwin中尝试了一下最终把我的登录shell 改为了zsh,并不是想抛弃bash 只是想尝试一段时间的zsh看看是否还有更新奇的东东出现!

    关于我的profile 当然是从Linuxtoy上当下来的,只做了一些小命令提示符的修改其余全部保留了!

    root9885兄很快,我还没有编辑完他就留言了,应他的要求我发个自己的截图。


    #关于历史纪录的配置
    # number of lines kept in history
    export HISTSIZE=10000
    # # number of lines saved in the history after logout
    export SAVEHIST=10000
    # # location of history
    export HISTFILE=~/.zhistory
    # # append command to history file once executed
    setopt INC_APPEND_HISTORY

    #Disable core dumps
    #limit coredumpsize 0

    #Emacs风格键绑定
    bindkey -e
    #设置DEL键为向后删除
    bindkey "\e[3~" delete-char

    #以下字符视为单词的一部分
    WORDCHARS='*?_-[]~=&;!#$%^(){}<>'

    #自动补全功能
    setopt AUTO_LIST
    setopt AUTO_MENU
    setopt MENU_COMPLETE

    autoload -U compinit
    compinit

    # Completion caching
    zstyle ':completion::complete:*' use-cache on
    zstyle ':completion::complete:*' cache-path .zcache
    #zstyle ':completion:*:cd:*' ignore-parents parent pwd

    #Completion Options
    zstyle ':completion:*:match:*' original only
    zstyle ':completion::prefix-1:*' completer _complete
    zstyle ':completion:predict:*' completer _complete
    zstyle ':completion:incremental:*' completer _complete _correct
    zstyle ':completion:*' completer _complete _prefix _correct _prefix _match _approximate

    # Path Expansion
    zstyle ':completion:*' expand 'yes'
    zstyle ':completion:*' squeeze-shlashes 'yes'
    zstyle ':completion::complete:*' '\\'

    zstyle ':completion:*:*:*:default' menu yes select
    zstyle ':completion:*:*:default' force-list always

    # GNU Colors 需要/etc/DIR_COLORS文件 否则自动补全时候选菜单中的选项不能彩色显示(我采用的是LS_COLORS)
    [ -f /etc/DIR_COLORS ] && eval $(dircolors -b /etc/DIR_COLORS)
    export ZLSCOLORS="${LS_COLORS}"
    zmodload zsh/complist
    zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
    zstyle ':completion:*:*:kill:*:processes' list-colors '=(#b) #([0-9]#)*=0=01;31'

    zstyle ':completion:*' completer _complete _match _approximate
    zstyle ':completion:*:match:*' original only
    zstyle ':completion:*:approximate:*' max-errors 1 numeric

    compdef pkill=kill
    compdef pkill=killall
    zstyle ':completion:*:*:kill:*' menu yes select
    zstyle ':completion:*:processes' command 'ps -au$USER'

    # Group matches and Describe
    zstyle ':completion:*:matches' group 'yes'
    zstyle ':completion:*:options' description 'yes'
    zstyle ':completion:*:options' auto-description '%d'
    zstyle ':completion:*:descriptions' format $'\e[01;33m -- %d --\e[0m'
    zstyle ':completion:*:messages' format $'\e[01;35m -- %d --\e[0m'
    zstyle ':completion:*:warnings' format $'\e[01;31m -- No Matches Found --\e[0m'

    #命令别名
    alias cp='cp -i'
    alias mv='mv -i'
    alias rm='rm -i'
    #alias ls='ls -F --color=auto'
    alias ls='ls -h --color=tty'
    alias ll='ls -l'
    alias grep='grep --color=auto'
    alias ee='emacsclient -t'

    #路径别名 进入相应的路径时只要 cd ~xxx
    hash -d WWW="/home/lighttpd/html"
    hash -d ARCH="/mnt/arch"
    hash -d PKG="/var/cache/pacman/pkg"
    hash -d E="/etc/env.d"
    hash -d C="/etc/conf.d"
    hash -d I="/etc/rc.d"
    hash -d X="/etc/X11"
    hash -d BK="/home/r00t/config_bak"

    ##for Emacs在Emacs终端中使用Zsh的一些设置 不推荐在Emacs中使用它
    if [[ "$TERM" == "dumb" ]]; then
    setopt No_zle
    PROMPT='%n@%M %/
    >>'
    alias ls='ls -F'
    fi


    setopt extended_glob
    preexec () {
        if [[ "$TERM" == "screen" ]]; then
        local CMD=${1[(wr)^(*=*|sudo|-*)]}
        echo -n "\ek$CMD\e\\"
        fi
    }

    #命令提示符的简单设置
    setprompt () {

        setopt prompt_subst

        # See if we can use colors.

        autoload colors zsh/terminfo
        if [[ "$terminfo[colors]" -ge 8 ]]; then
        colors
        fi
        for color in RED GREEN YELLOW BLUE MAGENTA CYAN WHITE; do
        eval PR_$color='%{$terminfo[bold]$fg[${(L)color}]%}'
        eval PR_LIGHT_$color='%{$fg[${(L)color}]%}'
        (( count = $count + 1 ))
        done
        PR_NO_COLOUR="%{$terminfo[sgr0]%}"    

    }

    setprompt

    PROMPT="%{$fg_bold[blue]%}%n %{${fg_bold[red]}%}:: %{${fg[green]}%}%3~%(0?. . ${fg[red]}%? )%{${fg[blue]}%}»%{${reset_color}%} "

    参考资料:ZSH

  • 相关阅读:
    [整理]ADB命令行学习笔记
    3、HTML的body内标签1
    2、HTML的head内标签
    1、HTML的本质以及在web中的作用
    3.11-3.15 HDFS HA
    3.9-3.10 分布式协作服务框架Zookeeper
    3.6-3.8 分布式环境启动、测试
    3.1-3.5 分布式部署hadoop2.x的准备和配置
    2.28 MapReduce在实际应用中常见的优化
    2.27 MapReduce Shuffle过程如何在Job中进行设置
  • 原文地址:https://www.cnblogs.com/storymedia/p/4436164.html
Copyright © 2011-2022 走看看