aboutsummaryrefslogtreecommitdiff
path: root/vimrc-full
diff options
context:
space:
mode:
authorMax Christian Pohle2017-06-12 00:04:24 +0200
committerMax Christian Pohle2017-06-12 00:04:24 +0200
commite97e9998136facabc2c6192b7a500a392b8c544a (patch)
tree29384a96039efbdb858580a1ef96c45f9bdcd7d5 /vimrc-full
parentfc41a020254f6b84da6e19080924132a64d89c78 (diff)
downloadvim-e97e9998136facabc2c6192b7a500a392b8c544a.tar.bz2
vim-e97e9998136facabc2c6192b7a500a392b8c544a.zip
Fixed local path display
Diffstat (limited to 'vimrc-full')
-rw-r--r--vimrc-full3
1 files changed, 2 insertions, 1 deletions
diff --git a/vimrc-full b/vimrc-full
index cf73b50..c72b4ac 100644
--- a/vimrc-full
+++ b/vimrc-full
@@ -224,7 +224,7 @@ let g:lightline = {
224 \ }, 224 \ },
225 \ 'tabline': { 225 \ 'tabline': {
226 \ 'left': [ [ 'bufferinfo' ], [ 'bufferbefore', 'buffercurrent', 'bufferafter' ], ], 226 \ 'left': [ [ 'bufferinfo' ], [ 'bufferbefore', 'buffercurrent', 'bufferafter' ], ],
227 \ 'right': [ [ 'close' ], [ '%{getcwd()}', 'gitbranch'] ], 227 \ 'right': [ [ 'close' ], [ 'getcwd', 'gitbranch'] ],
228 \ }, 228 \ },
229 \ 'component_expand': { 229 \ 'component_expand': {
230 \ 'buffercurrent': 'lightline#buffer#buffercurrent2', 230 \ 'buffercurrent': 'lightline#buffer#buffercurrent2',
@@ -239,6 +239,7 @@ let g:lightline = {
239 \ 'filetype': 'MyFiletype', 239 \ 'filetype': 'MyFiletype',
240 \ 'fileformat': 'MyFileformat', 240 \ 'fileformat': 'MyFileformat',
241 \ 'gitbranch': 'MyBranchname', 241 \ 'gitbranch': 'MyBranchname',
242 \ 'getcwd': 'getcwd',
242 \ }, 243 \ },
243 \ } 244 \ }
244 245
..