-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.bashrc
More file actions
44 lines (36 loc) · 1.32 KB
/
.bashrc
File metadata and controls
44 lines (36 loc) · 1.32 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
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
alias ls='ls --color=auto'
alias grep='grep --color=auto'
PS1='[\u@\h \W]\$ '
alias gdwm='cd ~/Documents/dwm/dwm/'
alias build='cd ~/Documents/dwm/dwm/ && sudo rm config.h && sudo make clean install'
alias pacman='sudo pacman'
alias fixk='/usr/local/bin/restore-layout.sh'
eval "$(starship init bash)"
alias ls='exa --icons --color=always --group-directories-first'
alias ll='exa -alF --icons --color=always --group-directories-first'
alias la='exa -a --icons --color=always --group-directories-first'
alias l='exa -F --icons --color=always --group-directories-first'
alias l.='exa -a | egrep "^\."'
alias open='explorer.exe'
alias pbcopy='win32yank.exe -i'
export EDITOR=nvim
alias update='paru -Qu'
alias upd='paru -Qu'
alias updateall='paru -Syu'
alias work_ssh='ssh alkondyakov@prx-mattermost-bot01'
alias ssh_work='ssh alkondyakov@prx-mattermost-bot01'
alias orangepi='ssh root@192.168.0.21'
#alias mc='yazi'
#export XDG_SESSION_TYPE=x11
eval "$(thefuck --alias)"
#alias vim='nvim'
##-----------------------------------------------------
## synth-shell-prompt.sh
if [ -f /home/alkondyakov/.config/synth-shell/synth-shell-prompt.sh ] && [ -n "$( echo $- | grep i )" ]; then
source /home/alkondyakov/.config/synth-shell/synth-shell-prompt.sh
fi