From 711b621fbaca62a064e5dade21e189e64a1e35d7 Mon Sep 17 00:00:00 2001 From: Mark Vainomaa Date: Sat, 28 Jan 2017 16:15:35 +0200 Subject: [PATCH] Use 4 spaces everywhere --- neostrophic.vim | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) 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()