aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Hovorka <[email protected]>2018-10-11 10:39:03 -0600
committerAdam Hovorka <[email protected]>2018-10-11 10:39:03 -0600
commit7e90f3ce032c8ba107bb368f7458bbdeafe9f2a6 (patch)
treee52a88532c915e218fe781e7d8bd7973ab2d4ec3
parentee2b0302837629e509df98be34435823e941e139 (diff)
Fix git branch spacing in vim status
-rw-r--r--base/vimrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/vimrc b/base/vimrc
index 6aa9fad..bbf69f7 100644
--- a/base/vimrc
+++ b/base/vimrc
@@ -88,7 +88,7 @@ hi Folded ctermbg=0 ctermfg=12
function! StatusGitInfo()
let git = gitbranch#name()
if git != ''
- return ' '.git.' '
+ return ' '.git
else
return ''
endfunction