-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.bashrc
More file actions
36 lines (27 loc) · 844 Bytes
/
.bashrc
File metadata and controls
36 lines (27 loc) · 844 Bytes
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
33
34
35
36
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
alias ls='ls --color=auto'
alias grep='grep --color=auto'
# ── Minimal Prompt ──
PS1='\[\e[38;5;81m\]\u\[\e[0m\] \[\e[38;5;252m\]\w\[\e[0m\] \[\e[38;5;109m\]⟩\[\e[0m\] '
export PATH=$HOME/.local/bin:$PATH
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
export SAL_USE_VCLPLUGIN=gtk3
# pnpm
export PNPM_HOME="~/.local/share/pnpm"
case ":$PATH:" in
*":$PNPM_HOME:"*) ;;
*) export PATH="$PNPM_HOME:$PATH" ;;
esac
# pnpm end
source ~/.bun-completions.bash
# wallust colors
if [ -f "$HOME/.cache/wallust/sequences" ]; then
cat "$HOME/.cache/wallust/sequences"
fi
export EDITOR="nvim"