You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@rafli-sss thanks a ton for your last comment, this was my issue! I am using oh-my-zsh, here is the relevant part of my .zshrc file after I got it working:
# Which plugins would you like to load?# Standard plugins can be found in $ZSH/plugins/# Custom plugins may be added to $ZSH_CUSTOM/plugins/# Example format: plugins=(rails git textmate ruby lighthouse)# Add wisely, as too many plugins slow down shell startup.
plugins=(
git
docker
zsh-vi-mode
zsh-autosuggestions
zsh-syntax-highlighting
zsh-history-substring-search
)
# Configure zsh-history-substring search to work with zsh-vi-mode# See https://github.com/zsh-users/zsh-history-substring-search#usage# and https://unix.stackexchange.com/a/248789# and https://github.com/jeffreytse/zsh-vi-mode#execute-extra-commands
zvm_after_init_commands+=("bindkey '^[[A' history-substring-search-up && bindkey '^[[B' history-substring-search-down")
# Set personal aliases, overriding those provided by oh-my-zsh libs,# plugins, and themes. Aliases can be placed here, though oh-my-zsh# users are encouraged to define aliases within the ZSH_CUSTOM folder.# For a full list of active aliases, run `alias`.## Example aliasesalias brew=/opt/bin/brew
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
[[ !-f~/.p10k.zsh ]] ||source~/.p10k.zsh
source$ZSH/oh-my-zsh.sh
At first, ".zsh" + Up Arrow should be "nvim .zshrc" or "source .zshrc". But nothing happens,
Then i "source .zshrc".
And it works.
The text was updated successfully, but these errors were encountered: