-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.bashrc
More file actions
60 lines (43 loc) · 1.29 KB
/
.bashrc
File metadata and controls
60 lines (43 loc) · 1.29 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
if [ -f /usr/bin/fastfetch ]; then
fastfetch
fi
# Alias's
alias rm='gio trash'
alias cp='cp -i'
alias mv='mv -i'
alias mkdir='mkdir -p'
alias ls='ls --color=auto'
alias grep='grep --color=auto'
alias ds='sudo systemctl start docker'
# shutdown
alias off='hyprshutdown --post-cmd "shutdown now"'
#PS1='[\u@\h \W]\$ '
# PS1='\[\e[35m\]\u\[\e[0m\]@\[\e[36m\]\h\[\e[0m\]:\$ '
PS1='\[\e[35m\]\u\[\e[0m\]@\[\e[36m\]\h\[\e[0m\]:\[\e[34m\]\w\[\e[0m\]\$ '
export PATH=$HOME/.local/bin:$PATH
eval "$(starship init bash)"
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
alias air='~/go/bin/air'
# Turso
export PATH="$PATH:/home/vivek/.turso"
# bun
export BUN_INSTALL="$HOME/.bun"
export PATH="$BUN_INSTALL/bin:$PATH"
export STM32_PRG_PATH=/home/vivek/STMicroelectronics/STM32Cube/STM32CubeProgrammer/bin
# pnpm
export PNPM_HOME="/home/vivek/.local/share/pnpm"
case ":$PATH:" in
*":$PNPM_HOME:"*) ;;
*) export PATH="$PNPM_HOME:$PATH" ;;
esac
# pnpm end
. "/home/vivek/.deno/env"
source /home/vivek/.local/share/bash-completion/completions/deno.bash
. "$HOME/.cargo/env"