-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbash_aliases
31 lines (27 loc) · 865 Bytes
/
bash_aliases
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
alias :q="exit"
alias gtags="ctags --fields=+l -R -f ./.tags"
alias install="sudo apt-get install "
alias uninstall="sudo apt-get remove "
alias update="sudo apt-get update "
alias op='xdg-open '
alias py3='python3 '
if [ -x /usr/bin/dircolors ]; then
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
alias ls='ls --color=auto'
#alias dir='dir --color=auto'
#alias vdir='vdir --color=auto'
alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto'
fi
# some more ls aliases
alias ls='exa'
alias ll='exa -lF --icons --git'
alias la='exa -a'
alias l='ls -CF'
alias sh='bash'
#alias nvim='NVIM_LISTEN_ADDRESS=/tmp/nvim nvim'
alias nv='~/.dotfiles/nvimex.py '
#alias notruecolor='export NVIM_TUI_ENABLE_TRUE_COLOR=0'
alias gs='git status'
alias lx='trash-put'