-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.bashrc
More file actions
32 lines (30 loc) · 1.54 KB
/
Copy path.bashrc
File metadata and controls
32 lines (30 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#======================================================
#
#
# ██████╗ █████╗ ███████╗██╗ ██╗██████╗ ██████╗
# ██╔══██╗██╔══██╗██╔════╝██║ ██║██╔══██╗██╔════╝
# ██████╔╝███████║███████╗███████║██████╔╝██║
# ██╔══██╗██╔══██║╚════██║██╔══██║██╔══██╗██║
# ██████╔╝██║ ██║███████║██║ ██║██║ ██║╚██████╗
# ╚═════╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝
# === Kaucrow ===
#
#======================================================
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
alias ls='ls --color=auto'
alias btop='btop -t'
alias neofetch='clear && neofetch --ascii ~/.config/neofetch/arch_small.txt --ascii_colors 7 1 3 2'
alias fastfetch='clear && fastfetch -c ~/.config/fastfetch/config.jsonc'
alias ncmp='ncmpcpp'
alias mpvmus='mpv --no-video --cache-secs=150'
export EDITOR='/usr/bin/nvim'
PS1='\[\033[1;36m\][\u@\W]\$\[\033[1;37m\] '
. "$HOME/.cargo/env"
# pnpm
export PNPM_HOME="/home/kaucrow/.local/share/pnpm"
case ":$PATH:" in
*":$PNPM_HOME:"*) ;;
*) export PATH="$PNPM_HOME:$PATH" ;;
esac
# pnpm end