diff --git a/neostrophic.vim b/neostrophic.vim index 8ee3f5e..b17932a 100644 --- a/neostrophic.vim +++ b/neostrophic.vim @@ -263,26 +263,26 @@ let g:lightline_buffer_reservelen = 20 let g:lightline = { \ 'active': { \ 'left': [['mode', 'paste'], ['filename', 'readonly', 'modified', 'fugitive']], - \ }, + \ }, \ 'component_function': { \ 'fugitive': 'LlFugitive', - \ }, - \ 'separator': { 'left': '>', 'right': '<' }, - \ 'subseparator': { 'left': '>', 'right': '<' } + \ }, + \ 'separator': { 'left': '>', 'right': '<' }, + \ 'subseparator': { 'left': '>', 'right': '<' } \ } function! LlFugitive() - return exists('*fugitive#head') ? fugitive#head() : '' + return exists('*fugitive#head') ? fugitive#head() : '' endfunction " Goyo & Lightline function! s:on_goyo_enter() - setlocal nocursorline - Limelight + setlocal nocursorline + Limelight endfunction function! s:on_goyo_leave() - setlocal cursorline - Limelight! + setlocal cursorline + Limelight! endfunction autocmd! User GoyoEnter nested call on_goyo_enter() autocmd! User GoyoLeave nested call on_goyo_leave()