Index ¦ Archives

Zsh

Zsh is a shell designed for interactive use, although it is also a powerful scripting language. Many of the useful features of bash, ksh, and tcsh were incorporated into zsh; many original features were added.

Oh-my-zsh

sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

nvim ~/.zshrc

<<<<<<< HEAD
export DEFAULT_USER='d4n1'
=======
export DEFAULT_USER=$USER
>>>>>>> 86eec846888a4200447ba4e5673d089cf1e0fa40
export EDITOR='nvim'
export ELM_DISPLAY='wl'
export ELM_ACCEL='opengl'
export ECORE_EVAS_ENGINE='wayland_egl'
export ARCHFLAGS='-arch x86_64'

export ZSH='/home/d4n1/.oh-my-zsh'
ZSH_THEME='lambda'
plugins=(
    debian
    git
    docker
)

source $ZSH/oh-my-zsh.sh

alias python=python3
alias n=nvim
<<<<<<< HEAD

export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"  # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"  # This loads nvm bash_completion
=======
>>>>>>> 86eec846888a4200447ba4e5673d089cf1e0fa40

neofetch --color_blocks off

<<<<<<< HEAD

n ~/.oh-my-zsh/themes/lambda.zsh-theme

PROMPT='λ %c $(git_prompt_info)%{$reset_color%}'

ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[green]%}"
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} "

86eec846888a4200447ba4e5673d089cf1e0fa40

nvim ~/.zprofile

if [ -z "${DISPLAY}" ] && [ "${XDG_VTNR}" -eq 1 ]; then
  enlightenment_start
fi

ZSH

© 2000-2022 by Daniel Pimentel (d4n1). Under MIT.