Skip to content

Instantly share code, notes, and snippets.

@nklkarthi
nklkarthi / .vimrc
Last active February 25, 2024 03:49
Vim yaml settings
syntax on
filetype plugin indent on
"Get the 2-space YAML as the default when hit carriage return after the colon, set cursor column and auto indent
autocmd FileType yaml setlocal ts=2 sts=2 sw=2 et cuc nu ai
@nklkarthi
nklkarthi / podman.sh
Last active December 8, 2022 03:36
EX188-bashrc-alias
echo 'source <(podman completion bash)' >>~/.bashrc
echo 'alias p=podman' >> ~/.bashrc
echo 'complete -o default -o nospace -F __start_podman p' >> ~/.bashrc