Last active
March 27, 2018 18:01
-
-
Save ckabalan/1d71b2802e7da6327cdf57053d22469f to your computer and use it in GitHub Desktop.
Misc Bash Snippets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ~/.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