Skip to content

Instantly share code, notes, and snippets.

@ckabalan
Last active March 27, 2018 18:01
Show Gist options
  • Save ckabalan/1d71b2802e7da6327cdf57053d22469f to your computer and use it in GitHub Desktop.
Save ckabalan/1d71b2802e7da6327cdf57053d22469f to your computer and use it in GitHub Desktop.
Misc Bash Snippets
# ~/.bashrc Aliases
alias ll="LC_COLLATE=C.UTF-8 ls -alhF --group-directories-first"
alias loadkey='eval $(ssh-agent) && ssh-add'
# Tmux Tweaks
# Work with NeoVim (~/.bashrc)
export EDITOR='TERM=xterm-256color nvim'
export GIT_EDITOR='TERM=xterm-256color nvim'
export VISUAL='TERM=xterm-256color nvim'
alias tmux="tmux -2"
alias nvim="TERM=xterm-256color nvim"
# Git Completion
source /usr/share/git-core/contrib/completion/git-prompt.sh
# AWS CLI Completion
complete -C '/usr/bin/aws_completer' aws
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment