aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--.vimrc8
1 files changed, 4 insertions, 4 deletions
diff --git a/.vimrc b/.vimrc
index 0c18da5..7eec669 100644
--- a/.vimrc
+++ b/.vimrc
@@ -1389,13 +1389,13 @@ endfunction
function! s:lightline_fileformat()
if &fileformat ==# 'unix'
- return 'lf'
+ return 'LF'
elseif &fileformat ==# 'dos'
- return 'crlf'
+ return 'CRLF'
elseif &fileformat ==# 'mac'
- return 'cr'
+ return 'CR'
else
- return 'unknown'
+ return '-'
endif
endfunction