Update some stuff
This commit is contained in:
parent
9472c48a09
commit
20cc076a54
2
.alias
2
.alias
|
@ -11,7 +11,7 @@ alias cat="bat -pp"
|
||||||
alias code="code-oss"
|
alias code="code-oss"
|
||||||
|
|
||||||
# dotfiles
|
# dotfiles
|
||||||
alias dot="git --git-dir=$HOME/git/dotfiles/ --work-tree=$HOME"
|
alias dot="git --git-dir=$HOME/git/.dotfiles/ --work-tree=$HOME"
|
||||||
|
|
||||||
# k8s
|
# k8s
|
||||||
alias k="kubectl"
|
alias k="kubectl"
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# alias for kubectl to k
|
# alias for kubectl to k
|
||||||
|
|
||||||
source <(kubectl completion bash)
|
command -v 2>&1 >/dev/null kubectl && source <(kubectl completion bash)
|
||||||
|
|
||||||
complete -o default -F __start_kubectl k
|
complete -o default -F __start_kubectl k
|
||||||
|
|
|
@ -28,4 +28,4 @@ alias xcln="xr -oO"
|
||||||
# Docker
|
# Docker
|
||||||
alias dc=docker-compose
|
alias dc=docker-compose
|
||||||
|
|
||||||
eval "$(thefuck --alias)"
|
command -v 2>&1 >/dev/null thefuck && eval "$(thefuck --alias)"
|
||||||
|
|
|
@ -1,5 +1,8 @@
|
||||||
# dotfiles
|
# dotfiles
|
||||||
|
|
||||||
|
`mkdir -p git/.dotfiles && git init --bare git/.dotfiles`
|
||||||
|
`cd $HOME && git --git-dir=$HOME/git/.dotfiles --work-tree`
|
||||||
|
|
||||||
Contains .dotfiles for my debian and void distros.
|
Contains .dotfiles for my debian and void distros.
|
||||||
Clone and `ln -s` the applicable files to the distro agnotic filenames. e.g.:
|
Clone and `ln -s` the applicable files to the distro agnotic filenames. e.g.:
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue