Hello,
This is my ~/.zshrc:
# Lines configured by zsh-newuser-install
HISTFILE=~/.histfile
HISTSIZE=1000
SAVEHIST=1000
bindkey -e
# End of lines configured by zsh-newuser-install
# The following lines were added by compinstall
zstyle :compinstall filename '/home/my-user/.zshrc'
autoload -Uz compinit
compinit
# End of lines added by compinstall
export ZSH=/usr/share/oh-my-zsh
source $ZSH/oh-my-zsh.sh
plugins=(git zsh-autosuggestions)
# Just checking we reach here
echo hi
When opening a new terminal window autosuggestions doesn’t work. In order to make it work I have to manually enter at the new terminal:
source ~/.zshrc
What could be the problem?
TIA