-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.bashrc
More file actions
31 lines (23 loc) · 836 Bytes
/
.bashrc
File metadata and controls
31 lines (23 loc) · 836 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
source ~/keys.env
alias la="ls -la"
MYVIMRC=~/dot/nvim/init.vim
alias vim=nvim
alias ..="cd .."
alias dockerps="docker ps --format 'table {{truncate .Names 100}}\t{{.Status}}'"
alias dcu="docker compose up --force-recreate --build -d"
#alias /="cd /"
take() {
mkdir -p $1
cd $1
}
export STARSHIP_CONFIG=~/dot/starship/config.toml
#eval "$(starship init bash)"
if [ -z "$FBTERM" ] && [ "$(tty)" = "/dev/tty1" ]; then
# exec fbterm -s 35 -- bash -c 'TERM=fbterm tmux'
# exec fbterm -s 35 -- bash -c 'TERM=fbterm tmux new-session -d "btop; exec bash" && tmux attach'
exec fbterm -s 35 -- bash -c 'export TERM=fbterm && tmux new-session -d "btop; exec bash" && tmux attach'
#export TERM=fbterm
fi
#eval $(thefuck --alias)
#eval $(thefuck --alias fuck)
#export PATH="/usr/local/texlive/2025/bin/x86_64-linux:$PATH"