Some nice developer environment bits
This commit is contained in:
parent
93b08a5628
commit
d3c372c350
|
@ -22,12 +22,14 @@ alias pubip="curl -4 icanhazip.com"
|
||||||
alias less="less -r"
|
alias less="less -r"
|
||||||
[[ -f ~/.LESS_TERMCAP ]] && . ~/.LESS_TERMCAP
|
[[ -f ~/.LESS_TERMCAP ]] && . ~/.LESS_TERMCAP
|
||||||
alias checkport="sudo netstat -tnlp | grep"
|
alias checkport="sudo netstat -tnlp | grep"
|
||||||
|
alias de="devenv"
|
||||||
alias dockerpurge="docker system prune --all --force --volumes"
|
alias dockerpurge="docker system prune --all --force --volumes"
|
||||||
alias dockerkill="docker stop \`docker ps -a -q\`"
|
alias dockerkill="docker stop \`docker ps -a -q\`"
|
||||||
alias vi="nvim"
|
alias vi="nvim"
|
||||||
alias tp="$HOME/bin/tmux_pair.bash"
|
alias tp="$HOME/bin/tmux_pair.bash"
|
||||||
alias tpdf="termpdf.py"
|
alias tpdf="termpdf.py"
|
||||||
alias tn="tmux new-window -n"
|
alias tn="tmux new-window -n"
|
||||||
|
alias genpdf="pandoc -o migration.pdf -t ms"
|
||||||
|
|
||||||
# Prompt setup
|
# Prompt setup
|
||||||
GIT_PS1_SHOWDIRTYSTATE=1
|
GIT_PS1_SHOWDIRTYSTATE=1
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
ap = add --patch
|
ap = add --patch
|
||||||
aap = !git add --intent-to-add . && git add --patch
|
aap = !git add --intent-to-add . && git add --patch
|
||||||
br = branch
|
br = branch
|
||||||
|
cb = clone --bare
|
||||||
co = checkout
|
co = checkout
|
||||||
cm = commit
|
cm = commit
|
||||||
cma = commit --amend
|
cma = commit --amend
|
||||||
|
@ -30,6 +31,8 @@
|
||||||
st = status
|
st = status
|
||||||
tree = log --oneline --graph --decorate --all
|
tree = log --oneline --graph --decorate --all
|
||||||
undo-commit = reset --soft HEAD~
|
undo-commit = reset --soft HEAD~
|
||||||
|
wa = worktree add
|
||||||
|
wr = worktree remove
|
||||||
[init]
|
[init]
|
||||||
defaultBranch = main
|
defaultBranch = main
|
||||||
[interactive]
|
[interactive]
|
||||||
|
|
|
@ -39,6 +39,7 @@
|
||||||
friendly-snippets # Collection of predefined snippets
|
friendly-snippets # Collection of predefined snippets
|
||||||
fugitive-gitlab-vim
|
fugitive-gitlab-vim
|
||||||
git-messenger-vim
|
git-messenger-vim
|
||||||
|
git-worktree-nvim
|
||||||
gruvbox-nvim
|
gruvbox-nvim
|
||||||
hologram-nvim # For images inside kitty
|
hologram-nvim # For images inside kitty
|
||||||
nvim-cmp
|
nvim-cmp
|
||||||
|
|
Loading…
Reference in New Issue