谁用过裸身 zsh , 怎么现在有些命令找不到
就是不用o my zsh.....自己配置的
怎么有命令找不到
- bash: setopt: command not found
bash: setopt: command not found
bash: setopt: command not found
bash: autoload: command not found
bash: compinit: command not found
bash: autoload: command not found
bash: promptinit: command not found
bash: setopt: command not found
bash: setopt: command not found
bash: setopt: command not found
bash: zstyle: command not found
bash: setopt: command not found
bash: setopt: command not found
bash: setopt: command not found
bash: setopt: command not found
bash: setopt: command not found
bash: setopt: command not found
bash: setopt: command not found
bash: setopt: command not found
- # Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
# Initialization code that may require console input (password prompts, [y/n]# confirmations, etc.) must go above this block; everything else may go below.
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
fi
#路径配置
export PATH=$HOME/bin:/usr/local/bin:$PATH
### ZSH HOME
export ZSH=$HOME/.zsh
###别名配置
source $HOME/.zsh_aliases
### ---- history config -------------------------------------
export HISTFILE=$HOME/.zsh_history
# How many commands zsh will load to memory.
export HISTSIZE=10000
# How many commands history will save on file.
export SAVEHIST=10000
#防止历史记录重复条目
setopt HIST_IGNORE_ALL_DUPS
#历史不搜索多重命令
setopt HIST_FIND_NO_DUPS
#不记录前面加空格的命令历史
setopt hist_ignore_space
#终端颜色配置
#export TERM=xterm-256color
export TERM='rxvt-256color'
#语言配置
export LANG=en_US.UTF-8
#自动补全
autoload -Uz compinit
compinit
#提示行高级提示
autoload -Uz promptinit
promptinit
#命令修正
setopt correctall
#关闭自动更正
setopt CORRECT
setopt CORRECT_ALL
#不区分大小写
zstyle ':completion:*' matcher-list '' 'm:{a-zA-Z}={A-Za-z}' 'r:|=*' 'l:|=* r:|=*'
#点前缀文件也能打开
_comp_options+=(globdots) # With hidden files
setopt no_nomatch
#默认编辑器
export EDITOR=vim
#自动跳转
setopt AUTO_CD
setopt autocd
setopt auto_cd
setopt autoCD
#用D跳转目录
setopt AUTO_PUSHD
setopt PUSHD_IGNORE_DUPS
setopt PUSHD_SILENT
#zsh别名
alias d='dirs -v'
for index ({1..9}) alias "$index"="cd +${index}"; unset index
#主题
source ~/.zsh/themes/powerlevel10k/powerlevel10k.zsh-theme
#source $ZSH/themes/spaceship-prompt/spaceship.zsh-theme
# p10k主题配置
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
热议
推荐楼 Smilence 2小时前
找一下命令的位置,盲猜你這裡應該還可以加些路徑
#路径配置
export PATH=$HOME/bin:/usr/local/binPATH
2楼 a274544628 2小时前
不懂,绑定
3楼 Smilence 2小时前
不太清楚這個情況。。。。不過既然不是用的bash,錯誤信息整個bash:開頭是個什麼情況?!
4楼 Smilence 2小时前
弱弱問下,zsh是啥??不是shell系列的一種??咋突然覺得自己有點迷路了呢。。。
6楼 坏坏 1小时前
找一下命令的位置,盲猜你這裡應該還可以加些路徑
#路径配置
我也感觉是路径,但是不知道哪里有问题......
7楼 Smilence 1小时前
我也感觉是路径,但是不知道哪里有问题......
setopt這一系列的命令包含在你的路徑裡面嗎?
最好確認下這些命令的位置。。。
8楼 坏坏 1小时前
setopt這一系列的命令包含在你的路徑裡面嗎?
最好確認下這些命令的位置。。。 ...
这个命令不会啊,如何查
9楼 坏坏 1小时前
setopt這一系列的命令包含在你的路徑裡面嗎?
最好確認下這些命令的位置。。。 ...
这个命令不会啊,如何查
https://www.google.com/search?q=bash%3A+setopt%3A+command+not+found&sourceid=chrome&ie=UTF-8
查不到
申明:本文内容由网友收集分享,仅供学习参考使用。如文中内容侵犯到您的利益,请在文章下方留言,本站会第一时间进行处理。
评论前必须登录!
立即登录 注册