Kubectl tricks for the console

What do you thin about this base configuration?

alias k=kubectl # will already be pre-configured
export do=“–dry-run=client -o yaml” # k create deploy nginx --image=nginx $do
export now=“–force --grace-period 0” # k delete pod x $now

Vim setup in ~/.vimrc
set tabstop=2
set expandtab
set shiftwidth=2