aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Hovorka <[email protected]>2018-11-10 14:34:44 -0700
committerAdam Hovorka <[email protected]>2018-11-10 14:34:44 -0700
commit7ebb6f05eecb2369dbc43e499cd4277f13e5c5c5 (patch)
tree0543a60af791196575b4128bdf6efe5f01937e3e
parent0166b66bf0f625e2a54255b0c749f0404826a68f (diff)
Fix spacing, re-add gl="git pull" alias
-rw-r--r--base/vimrc2
-rw-r--r--base/zsh/aliases.zsh1
2 files changed, 2 insertions, 1 deletions
diff --git a/base/vimrc b/base/vimrc
index 5770a2b..f9cb456 100644
--- a/base/vimrc
+++ b/base/vimrc
@@ -105,7 +105,7 @@ set statusline+=%{&modified?'\ +':''} " Modified
set statusline+=%{&ro?'\ ':''} " Read only
set statusline+=%{&paste?'\ P':''} " Paste mode
"set statusline+=[%n%H%M%R%W]\ " flags and buf no
-set statusline+=\ %4*%=%3*\ " Section break
+set statusline+=\ %4*%=%3*\ " Section break
set statusline+=%{&ff=='unix'?'':&ff\ } " Line ending
set statusline+=%l\ %c\ %P\ " Line column percent
set statusline+=%2*%1*%{StatusGitInfo()}\ " Git branch
diff --git a/base/zsh/aliases.zsh b/base/zsh/aliases.zsh
index 8784e86..7167d08 100644
--- a/base/zsh/aliases.zsh
+++ b/base/zsh/aliases.zsh
@@ -29,6 +29,7 @@ alias mv="mv -i"
# GIT
alias gits='git status --short'
alias gp='git push'
+alias gl='git pull'
alias ga='git add'
alias gco='git checkout'
alias gwc='git whatchanged -p --abbrev-commit --pretty=medium'