2022-07-21 19:13:40 +03:00
|
|
|
# shellcheck shell=bash
|
2016-08-25 19:45:59 +03:00
|
|
|
# If not running interactively, don't do anything
|
|
|
|
[[ $- != *i* ]] && return
|
|
|
|
|
|
|
|
HISTSIZE=1000
|
2018-07-10 03:25:36 +03:00
|
|
|
HISTFILE="$HOME/.bash_history.$UID"
|
2016-10-20 15:44:56 +03:00
|
|
|
HISTCONTROL=ignoredups
|
2018-07-11 13:26:42 +03:00
|
|
|
shopt -s histappend checkwinsize autocd
|
2016-08-25 19:45:59 +03:00
|
|
|
|
2022-07-06 18:53:00 +03:00
|
|
|
export LESS='i M R'
|
|
|
|
export PAGER=less
|
|
|
|
export EDITOR=vim
|
|
|
|
export TIME_STYLE=long-iso
|
2018-07-10 03:25:36 +03:00
|
|
|
export SSH_AUTH_SOCK="$HOME/.ssh/ssh_auth_sock"
|
2022-08-22 02:57:33 +03:00
|
|
|
|
|
|
|
((UID)) && ps_clr=53 || ps_clr=52
|
2021-02-10 20:52:02 +02:00
|
|
|
# just a colored version of [ $USER $HOSTNAME:$CWD ]
|
2023-08-21 21:24:52 +03:00
|
|
|
printf -v PS1 '\\[\\e[0m\\]\\[\\e[48;5;%sm\\] \\u \\[\\e[48;5;237m\\] \\h \\[\\e[48;5;234m\\] \\w \\[\\e[0m\\]\n\\$ ' $ps_clr
|
2019-02-07 14:21:37 +02:00
|
|
|
unset ps_clr
|
2022-08-22 02:57:33 +03:00
|
|
|
|
|
|
|
unalias ls ld ll 2>/dev/null
|
|
|
|
|
2020-01-28 15:39:04 +02:00
|
|
|
beep() { printf "\007"; }
|
|
|
|
fixterm() { printf "c"; }
|
|
|
|
|
|
|
|
diff() { command diff --color "$@"; }
|
2022-07-06 18:53:00 +03:00
|
|
|
tailf() { command less +F "$@"; }
|
2020-01-28 15:39:04 +02:00
|
|
|
rgrep() { command grep --exclude-dir=\.git -R "$@"; }
|
|
|
|
whence() { command -v "$@"; }
|
2018-07-10 03:25:36 +03:00
|
|
|
|
|
|
|
# ls
|
2020-01-28 15:39:04 +02:00
|
|
|
ls() { command ls --color=auto --group-directories-first "$@"; }
|
2022-08-22 02:57:33 +03:00
|
|
|
ll() { ls -alh "$@"; }
|
|
|
|
ll() { ls -dlh "$@"; }
|
2018-07-10 03:25:36 +03:00
|
|
|
|
|
|
|
# git
|
2020-01-28 15:39:04 +02:00
|
|
|
gci() { command git commit "$@"; }
|
|
|
|
gsl() { command git stash list "$@"; }
|
|
|
|
gss() { command git status -sbu "$@"; }
|
|
|
|
gup() { command git pull "$@"; }
|
|
|
|
groot() { cd "$(command git rev-parse --show-cdup)" || return 1; }
|
|
|
|
ggrep() { command git grep "$@"; }
|
|
|
|
gsi() { command tig status; }
|
2018-07-10 03:25:36 +03:00
|
|
|
|
|
|
|
# tmux
|
2020-01-28 15:39:04 +02:00
|
|
|
tmux() { command tmux -2 "$@"; }
|
|
|
|
atmux() { tmux attach; }
|
2018-07-10 03:25:36 +03:00
|
|
|
|
2021-04-08 21:06:34 +03:00
|
|
|
# sudo
|
|
|
|
sush() { command sudo -Es; }
|
2020-01-28 15:39:04 +02:00
|
|
|
|
2018-07-10 03:25:36 +03:00
|
|
|
# bash-completion
|
|
|
|
completion_path='/usr/share/bash-completion/bash_completion'
|
|
|
|
[[ -r "$completion_path" ]] && source "$completion_path"
|
2022-08-22 02:57:33 +03:00
|
|
|
|
2016-08-25 19:45:59 +03:00
|
|
|
# we want to see exit code on error (it also has to be the last entry here)
|
2019-11-22 18:32:06 +02:00
|
|
|
trap_msg='\e[31m>>\e[0m exit \e[31m%s\e[0m\n'
|
2019-02-07 14:21:37 +02:00
|
|
|
trap 'printf "$trap_msg" "$?" >&2' ERR
|