diff options
author | Adam Hovorka <[email protected]> | 2018-11-10 14:34:44 -0700 |
---|---|---|
committer | Adam Hovorka <[email protected]> | 2018-11-10 14:34:44 -0700 |
commit | 7ebb6f05eecb2369dbc43e499cd4277f13e5c5c5 (patch) | |
tree | 0543a60af791196575b4128bdf6efe5f01937e3e | |
parent | 0166b66bf0f625e2a54255b0c749f0404826a68f (diff) |
Fix spacing, re-add gl="git pull" alias
-rw-r--r-- | base/vimrc | 2 | ||||
-rw-r--r-- | base/zsh/aliases.zsh | 1 |
2 files changed, 2 insertions, 1 deletions
@@ -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' |