My Custom Command Line Functions

Code
##############################################
# Neovim shotcut

function nv () {
  nvim $1
}


##############################################
# tmux attach

function ta() {
  tmux attach -t $1
}


##############################################
# tmux attach to on stream

function tao() {
  tmux attach -t on
}


##############################################
# tmux attach list sessions

function tls() {
  tmux ls
}