snips/root.bashrc

43 lines
664 B
Plaintext
Raw Normal View History

2019-08-17 03:06:22 +00:00
# ~/.bashrc: executed by bash(1) for non-login shells.
# --------------------------------
# Shell RC
# --------------------------------
2024-03-30 21:28:12 +00:00
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;41m\]$(hostname)\[\033[00m\]\[\033[01;34m\] \w\[\033[00m\] \$ '
2019-08-17 03:06:22 +00:00
#
# Variables
#
2024-03-30 21:28:12 +00:00
export EDITOR=nvim
2019-08-17 03:06:22 +00:00
export PATH=~/bin:$PATH
#
# Aliases
#
alias ls='ls -al --color'
alias q=exit
alias a=clear
alias h=history
alias e=$EDITOR
2024-03-30 21:28:12 +00:00
alias n=nvim
2019-08-17 03:06:22 +00:00
#
# Functions
#
function myvim () {
gvim $1 >& /dev/null &
disown %1
}
function hgrep () {
history | grep $1
}
function pgrep () {
ps aux | grep $1
}
2020-04-19 20:19:47 +00:00
function u2d () {
apt update && apt full-upgrade -y && apt autoremove -y
}