32 lines
763 B
Bash
32 lines
763 B
Bash
|
# If you come from bash you might have to change your $PATH.
|
||
|
# export PATH=$HOME/bin:/usr/local/bin:$PATH
|
||
|
|
||
|
export ZSH="$HOME/.oh-my-zsh"
|
||
|
|
||
|
# Set-up icons for files/folders in terminal
|
||
|
alias ls='eza -a --icons'
|
||
|
alias ll='eza -al --icons'
|
||
|
alias lt='eza -a --tree --level=1 --icons'
|
||
|
|
||
|
# Starting down here, are set in user.nix
|
||
|
|
||
|
#ZSH_THEME="xiong-chiamiov-plus"
|
||
|
|
||
|
#plugins=(
|
||
|
# git
|
||
|
#zsh-autosuggestions
|
||
|
#zsh-syntax-highlighting
|
||
|
#)
|
||
|
|
||
|
# Display Pokemon-colorscripts
|
||
|
# Project page: https://gitlab.com/phoneybadger/pokemon-colorscripts#on-other-distros-and-macos
|
||
|
#pokemon-colorscripts --no-title -s -r
|
||
|
|
||
|
|
||
|
# Set-up FZF key bindings (CTRL R for fuzzy history finder)
|
||
|
#source <(fzf --zsh)
|
||
|
|
||
|
#HISTFILE=~/.zsh_history
|
||
|
#HISTSIZE=10000
|
||
|
#SAVEHIST=10000
|
||
|
#setopt appendhistory
|