Compare commits

...

12 Commits

11 changed files with 87 additions and 42 deletions

View File

@ -1,12 +1,12 @@
#!/bin/bash
# Git
if [ -x /usr/bin/git ]
then
if [ -x /usr/bin/git ]; then
alias gs='git status'
alias ga='git add'
alias gc='git commit'
alias gca='git commit -a'
alias gf='git fetch'
alias gu='git pull'
alias gp='git pull && git push'
alias gd='git diff'

View File

@ -1,11 +1,8 @@
#!/bin/bash
if (which kubectl &> /dev/null)
if (command -v kubectl &> /dev/null)
then
# activate completion
source <(kubectl completion bash)
# create a quick alias
alias k=kubectl
alias ks="kubectl --namespace kube-system"

5
aliases.d/lazygit Normal file
View File

@ -0,0 +1,5 @@
# Lazygit
if ( which lazygit &> /dev/null )
then
alias lg='lazygit'
fi

5
aliases.d/lsd Normal file
View File

@ -0,0 +1,5 @@
# LSD
if ( command -v lsd &> /dev/null )
then
alias ls='lsd'
fi

View File

@ -1,9 +1,20 @@
#!/bin/bash
# Vim Editor
if [ -x /usr/bin/vim ]
if (command -v nvim &> /dev/null)
then
alias vi='vim -p'
alias view='vim -R'
alias vless='vim -u /usr/share/vim/vim*/macros/less.vim'
alias vim=nvim
fi
# if (command -v lvim &>/dev/null); then
# alias vim=lvim
# elif (command -v nvim &>/dev/null); then
# alias vim=nvim
# fi
# if [ -x /usr/bin/vim ]
# then
# alias vi='vim -p'
# alias view='vim -R'
# alias vless='vim -u /usr/share/vim/vim*/macros/less.vim'
# fi

View File

@ -1,9 +1,6 @@
#!/bin/bash
if (which helm &> /dev/null)
if (command -v helm &> /dev/null)
then
# activate completion
source <( helm completion bash )
fi

View File

@ -1,6 +1,6 @@
#!/bin/bash
if ( which kubectl ) &> /dev/null
if (command -v kubectl &> /dev/null)
then
source <(kubectl completion bash)
fi

6
completion.d/poetry Normal file
View File

@ -0,0 +1,6 @@
#!/bin/bash
if ( command -v poetry &> /dev/null )
then
source <(poetry completions bash)
fi

View File

@ -1,9 +1,6 @@
#!/bin/bash
if (which stern &> /dev/null)
if (command -v stern &> /dev/null)
then
# activate completion
source <(stern --completion bash)
fi

View File

@ -1 +1,23 @@
[[ -f ~/.config/broot/launcher/bash/br ]] && source ~/.config/broot/launcher/bash/br
#!/bin/bash
if (command -v broot &>/dev/null); then
# This script was automatically generated by the broot program
# More information can be found in https://github.com/Canop/broot
# This function starts broot and executes the command
# it produces, if any.
# It's needed because some shell commands, like `cd`,
# have no useful effect if executed in a subshell.
function br {
local cmd cmd_file code
cmd_file=$(mktemp)
if broot --outcmd "$cmd_file" "$@"; then
cmd=$(<"$cmd_file")
rm -f "$cmd_file"
eval "$cmd"
else
code=$?
rm -f "$cmd_file"
return "$code"
fi
}
fi

5
rc.d/git Normal file
View File

@ -0,0 +1,5 @@
#!/bin/bash
if (command -v git && command -v fzf) &>/dev/null; then
function gsb { git checkout "$(git branch --all | fzf | tr -d '[:space:]')"; }
fi