add path environment variables
This commit is contained in:
parent
a7cf1fe793
commit
fdc87a717c
20
bash/bashrc
20
bash/bashrc
@ -14,17 +14,24 @@ HISTTIMEFORMAT="%F %T "
|
|||||||
# SHELL OPTIONS
|
# SHELL OPTIONS
|
||||||
# -------------
|
# -------------
|
||||||
shopt -s checkhash checkjobs checkwinsize
|
shopt -s checkhash checkjobs checkwinsize
|
||||||
shopt -s direxpand dirspell extglob globstar
|
shopt -s dirspell extglob globstar
|
||||||
shopt -s cmdhist histappend
|
shopt -s cmdhist histappend
|
||||||
|
|
||||||
# VARIABLES
|
# VARIABLES
|
||||||
# ---------
|
# ---------
|
||||||
|
|
||||||
|
# PROGRAMS
|
||||||
export EDITOR="/usr/bin/vim"
|
export EDITOR="/usr/bin/vim"
|
||||||
export VISUAL="/usr/bin/vim"
|
export VISUAL="/usr/bin/vim"
|
||||||
export PAGER="less"
|
export PAGER="less"
|
||||||
|
|
||||||
|
# PATHS
|
||||||
|
export WD="$HOME/src"
|
||||||
|
export GOWD="$HOME/.go/src/github.com/lemonase"
|
||||||
|
export DF="$WD/dotfiles"
|
||||||
|
|
||||||
|
# URLS
|
||||||
export GH="https://github.com/lemonase"
|
export GH="https://github.com/lemonase"
|
||||||
export DF="$HOME/src/dotfiles"
|
|
||||||
|
|
||||||
# ALIASES
|
# ALIASES
|
||||||
# -------
|
# -------
|
||||||
@ -173,8 +180,13 @@ rcdiff() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
# git
|
# git
|
||||||
lazygit() { git commit -a -m "$*" && git push; }
|
lazygit() {
|
||||||
lg() { lazygit "$*"; }
|
git commit -a -m "$*" && git push;
|
||||||
|
}
|
||||||
|
|
||||||
|
lg() {
|
||||||
|
lazygit "$*";
|
||||||
|
}
|
||||||
|
|
||||||
# PROMPTS
|
# PROMPTS
|
||||||
# -------
|
# -------
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user