Created
November 9, 2022 12:00
-
-
Save deepu105/b79cd4eb7b0040e8a7c3649c557496b4 to your computer and use it in GitHub Desktop.
.zshrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# If you come from bash you might have to change your $PATH. | |
export SHELL=/usr/bin/zsh | |
# Path to your oh-my-zsh installation. | |
export ZSH="/home/deepu/.oh-my-zsh" | |
# Lines configured by zsh-newuser-install | |
HISTFILE=~/.zsh_history | |
HISTSIZE=5000 | |
SAVEHIST=5000 | |
setopt autocd | |
# End of lines configured by zsh-newuser-install | |
# The following lines were added by compinstall | |
zstyle :compinstall filename '/home/deepu/.zshrc' | |
autoload -Uz compinit | |
compinit | |
# End of lines added by compinstall | |
source ~/.profile | |
ENABLE_CORRECTION="false" | |
plugins=(git zsh-autosuggestions zsh-syntax-highlighting) | |
source $ZSH/oh-my-zsh.sh | |
source ~/.profile | |
# plugins | |
ZSH_AUTOSUGGEST_STRATEGY=(history completion) | |
ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=#888888' | |
# load starship | |
eval "$(starship init zsh)" | |
eval "$(zoxide init zsh)" | |
source /home/deepu/.config/broot/launcher/bash/br |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment