diff --git a/home/vim/plugin/settings/lightline.vim b/home/vim/plugin/settings/lightline.vim index feaa733..039b2b3 100644 --- a/home/vim/plugin/settings/lightline.vim +++ b/home/vim/plugin/settings/lightline.vim @@ -63,7 +63,7 @@ let g:lightline#ale#indicator_ok='✓' " Show a lock icon when editing a read-only file when it makes sense function! LightlineReadonly() - return &ft!~?'help\|vimfiler\|netrw' && &readonly ? '' : '' + return &ft!~?'help\|vimfiler\|netrw' && &readonly ? '🔒' : '' endfunction " Show a '+' when the buffer is modified, '-' if not, when it makes sense