mirror of
https://github.com/JaKooLit/Debian-Hyprland.git
synced 2025-12-21 18:20:13 +01:00
27 lines
592 B
Bash
27 lines
592 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"
|
|
|
|
ZSH_THEME="xiong-chiamiov-plus"
|
|
|
|
plugins=(
|
|
git
|
|
zsh-autosuggestions
|
|
zsh-syntax-highlighting
|
|
)
|
|
|
|
source $ZSH/oh-my-zsh.sh
|
|
|
|
|
|
# Display Pokemon-colorscripts
|
|
# Project page: https://gitlab.com/phoneybadger/pokemon-colorscripts#on-other-distros-and-macos
|
|
#pokemon-colorscripts --no-title -s -r
|
|
|
|
|
|
# Set-up icons for files/folders in terminal using eza
|
|
alias ls='eza -a --icons'
|
|
alias ll='eza -al --icons'
|
|
alias lt='eza -a --tree --level=1 --icons'
|
|
|