aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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
..