diff options
author | Max Christian Pohle | 2017-06-12 00:04:24 +0200 |
---|---|---|
committer | Max Christian Pohle | 2017-06-12 00:04:24 +0200 |
commit | e97e9998136facabc2c6192b7a500a392b8c544a (patch) | |
tree | 29384a96039efbdb858580a1ef96c45f9bdcd7d5 /vimrc-full | |
parent | fc41a020254f6b84da6e19080924132a64d89c78 (diff) | |
download | vim-e97e9998136facabc2c6192b7a500a392b8c544a.tar.bz2 vim-e97e9998136facabc2c6192b7a500a392b8c544a.zip |
Fixed local path display
Diffstat (limited to 'vimrc-full')
-rw-r--r-- | vimrc-full | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 | ||