zsh, oh-my-zsh
Contents
zsh, oh-my-zsh
查看 zsh 版本
|
|
不能自动补全
|
|
自动补全提示插件
https://www.jianshu.com/p/aea390c1c8ef
|
|
install zsh
|
|
switch to zsh
|
|
oh-my-zsh 是一个著名的,社区驱动的框架,它拥有很多有用的函数,helpers,插件,主题,可以用来简化复杂的 Zsh 配置。
config zsh history size
edit .zshrc and add following lines
set history size
export HISTSIZE=10000
save history after logout
export SAVEHIST=10000
theme, random 模式使用theme列表
使用random模式时经常会随机到系统不支持的主题, 使用ZSH_THEME_RANDOM_CANDIDATES 配置, 可以把随机主题控制在一定范围内。
|
|
.zshenv
.zshenv总是被读取,所以通常把$PATH, $EDITOR等变量写在这里,这样无论是在shell交互,或者运行程序都会读取此文件 Since .zshenv is always sourced, it often contains exported variables that should be available to other programs. For example, $PATH, $EDITOR, and $PAGER are often set in .zshenv. Also, you can set $ZDOTDIR in .zshenv to specify an alternative location for the rest of your zsh configuration.
.zprofile
.zprofile是给ksh用户的一个.zlogin的替代品,所以我们如果使用了.zlogin就不必再关心此文件 .zprofile is basically the same as .zlogin except that it’s sourced before .zshrc while .zlogin is sourced after .zshrc. According to the zsh documentation, “.zprofile is meant as an alternative to .zlogin for ksh fans; the two are not intended to be used together, although this could certainly be done if desired.”
.zshrc
.zshrc主要用在交互shell,所以主要是为shell服务的,比如对shell做的一些个性化设置都可以在这里写入 .zshrc is for interactive shell configuration. You set options for the interactive shell there with the setopt and unsetopt commands. You can also load shell modules, set your history options, change your prompt, set up zle and completion, et cetera. You also set any variables that are only used in the interactive shell (e.g. $LS_COLORS).
.zlogin
.zlogin在login shell的时候读取,所以比如X系统启动的时候会读取此文件,所以不会再运行中重复读取 .zlogin is sourced on the start of a login shell but after .zshrc if the shell is also interactive. This file is often used to start X using startx. Some systems start X on boot, so this file is not always very useful.
.zlogout
.zlogout这个就很好理解了, 退出终端的时候读取,用于做一些清理工作,一般我们也用不上 .zlogout is sometimes used to clear and reset the terminal. It is called when exiting, not when opening.
You should go through the configuration files of random Github users to get a better idea of what each file should contain.
顺序
.zshenv → [.zprofile if login] → [.zshrc if interactive] → [.zlogin if login] → [.zlogout sometimes].
.zshenv, .zprofile
https://github.com/robbyrussell/oh-my-zsh
https://wiki.archlinux.org/index.php/Zsh_(%E7%AE%80%E4%BD%93%E4%B8%AD%E6%96%87)#.E5.AE.89.E8.A3.85
Author -
LastMod 2017-04-06