One command launch
Launching Neovim configuration is usually done with 2 or 3 steps. I don't want that, I want it to be one step.
Use alias
In "~/.bashrc":
shopt -s globstar
nvim_config() {
cd ~/.config/nvim
nvim *.lua **/*.lua
}
alias nvim-config='nvim_config'