mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-09 23:06:38 -05:00
Update the utf-8 icons used in the lightline status bar
This commit is contained in:
parent
0c427f914a
commit
1511f4e33f
1 changed files with 2 additions and 2 deletions
|
@ -365,11 +365,11 @@ scriptencoding utf-8
|
|||
let g:vimfiler_force_overwrite_statusline = 0
|
||||
|
||||
function! LLModified()
|
||||
return &ft =~ 'help' ? '' : &modified ? '💾 ' : &modifiable ? '' : '-'
|
||||
return &ft =~ 'help' ? '' : &modified ? '💾' : &modifiable ? '' : '-'
|
||||
endfunction
|
||||
|
||||
function! LLReadonly()
|
||||
return &ft !~? 'help' && &readonly ? '🔒' : ''
|
||||
return &ft !~? 'help' && &readonly ? '🔏' : ''
|
||||
endfunction
|
||||
|
||||
function! LLFilename()
|
||||
|
|
Loading…
Reference in a new issue