Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Lines configured by zsh-newuser-install
- HISTFILE=~/.histfile
- HISTSIZE=1000
- SAVEHIST=1000
- setopt autocd extendedglob notify
- bindkey -e
- # End of lines configured by zsh-newuser-install
- # End of lines added by compinstall
- # Only run in interactive shell
- [[ $- != *i* ]] && return
- # The following lines were added by compinstall
- # ========== Completions ==========
- zstyle :compinstall filename '/home/psycho/.zshrc'
- # Completion init
- autoload -Uz compinit
- compinit
- # ========== Aliases ==========
- alias ls='ls --color=auto'
- alias grep='grep --color=auto'
- # ========== PATHs ==========
- export PATH=$PATH:/home/psycho/.local/bin
- # Added by LM Studio CLI (lms)
- export PATH="$PATH:/home/psycho/.lmstudio/bin"
- # ========== Oh My Posh ==========
- if command -v oh-my-posh &> /dev/null; then
- export POSH_THEME="/home/psycho/.config/myprofile.omp.json"
- eval "$(oh-my-posh init zsh --config $POSH_THEME)"
- fi
- ### Added by Zinit's installer
- if [[ ! -f $HOME/.local/share/zinit/zinit.git/zinit.zsh ]]; then
- print -P "%F{33} %F{220}Installing %F{33}ZDHARMA-CONTINUUM%F{220} Initiative Plugin Manager (%F{33}zdharma-continuum/zinit%F{220})…%f"
- command mkdir -p "$HOME/.local/share/zinit" && command chmod g-rwX "$HOME/.local/share/zinit"
- command git clone https://github.com/zdharma-continuum/zinit "$HOME/.local/share/zinit/zinit.git" && \
- print -P "%F{33} %F{34}Installation successful.%f%b" || \
- print -P "%F{160} The clone has failed.%f%b"
- fi
- source "$HOME/.local/share/zinit/zinit.git/zinit.zsh"
- autoload -Uz _zinit
- (( ${+_comps} )) && _comps[zinit]=_zinit
- # Load a few important annexes, without Turbo
- # (this is currently required for annexes)
- zinit light-mode for \
- zdharma-continuum/zinit-annex-as-monitor \
- zdharma-continuum/zinit-annex-bin-gem-node \
- zdharma-continuum/zinit-annex-patch-dl \
- zdharma-continuum/zinit-annex-rust
- ### End of Zinit's installer chunk
- #Plugins
- zinit light zsh-users/zsh-autosuggestions
- zinit light zdharma-continuum/fast-syntax-highlighting
- zinit light Aloxaf/fzf-tab
- zinit light zsh-users/zsh-completions
- # ========== NVM ==========
- source /usr/share/nvm/init-nvm.sh
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement