commit 4232aa72344bb1820bd6e5e4593af42c9cdc6dcc (patch)
parent 6c9e4782657c52ed2ad1dad9850e1c82e7c47282
Author: Alex Karle <alex@karle.co>
Date: Sun, 19 May 2019 19:52:38 -0400
bash cd ... aliases, inputrc yank-last-arg, and tmux colors
Diffstat:
3 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/bash/aliases b/bash/aliases
@@ -22,7 +22,7 @@ alias gst='git status'
alias gl='git pull'
alias gco='git checkout'
alias gf='git fetch'
-alias glg='git log --stat'
+alias glg='git log --stat --decorate'
alias glgr='git log --oneline | head -n 10'
alias g_='git stash'
alias g_p='git stash pop'
@@ -45,11 +45,11 @@ if [ -x "$(command -v nvim)" ]; then
alias vim="nvim"
fi
-# Security aliases
+# Other Aliases
alias sudovim='sudo vim -u NONE'
-
-# Common cd aliases
alias cddv='cd ~/.vim'
-
-# grep
alias grep='grep --color'
+alias make='time make'
+alias ...='cd ../../..'
+alias ....='cd ../../../..'
+alias .....='cd ../../../../..'
diff --git a/inputrc b/inputrc
@@ -13,6 +13,7 @@ Control-l: clear-screen
set keymap vi-insert
Control-l: clear-screen
+Control-x: yank-last-arg
# Quicker changing of prompt after ESC
set keyseq-timeout 30
diff --git a/tmux.conf b/tmux.conf
@@ -64,6 +64,5 @@ set -g status-left-style "bg=yellow"
set -g status-interval 60
# border colours
-set -g pane-border-style fg=blue,bold
+set -g pane-border-style fg=default,bold
set -g pane-active-border-style fg=blue,bold
-set -g pane-active-border-style bg=default,bold