aboutsummaryrefslogtreecommitdiff
path: root/plugin/statusline.vim
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/statusline.vim')
-rw-r--r--plugin/statusline.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugin/statusline.vim b/plugin/statusline.vim
index d7f3fbd..270f666 100644
--- a/plugin/statusline.vim
+++ b/plugin/statusline.vim
@@ -57,12 +57,12 @@ augroup MAX_FANCYLINE
57 \ 't' : 'terminal' 57 \ 't' : 'terminal'
58 \ }, mode(), mode()) 58 \ }, mode(), mode())
59 let l:webdev_ft_icon = exists("*WebDevIconsGetFileTypeSymbol") ? 59 let l:webdev_ft_icon = exists("*WebDevIconsGetFileTypeSymbol") ?
60 \ WebDevIconsGetFileTypeSymbol('*.'.&filetype) : "" 60 \ " ".WebDevIconsGetFileTypeSymbol('*.'.&filetype)." " : ""
61 return '' 61 return ''
62 \ ."%#StatusLineHighlight#" 62 \ ."%#StatusLineHighlight#"
63 \ ."%#".a:highlight_group."#" 63 \ ."%#".a:highlight_group."#"
64 \ ."%{(&readonly\ ?\ '\ \ 🔒'\ :\ '')}" 64 \ ."%{(&readonly\ ?\ '\ \ 🔒'\ :\ '')}"
65 \ ."%{(&modified\ ?\ '\ \ '\ :\ '')}" 65 \ ."%{(&modified\ ?\ '\ \ 💾'\ :\ '')}"
66 \ ."%(%w%h%q%)".' '.l:mode.' ' 66 \ ."%(%w%h%q%)".' '.l:mode.' '
67 \ ."%{(argc()>0\ ?\ argidx()+1.':'.argc().' '.g:status_sym_sep_start.' '\ :\ '')}" 67 \ ."%{(argc()>0\ ?\ argidx()+1.':'.argc().' '.g:status_sym_sep_start.' '\ :\ '')}"
68 \ ."%{(haslocaldir() ?\ g:status_sym_sep_start.' '.fnamemodify(getcwd(),\ ':.').'/ '\ \:\ '')}\ " 68 \ ."%{(haslocaldir() ?\ g:status_sym_sep_start.' '.fnamemodify(getcwd(),\ ':.').'/ '\ \:\ '')}\ "
@@ -92,7 +92,7 @@ augroup MAX_FANCYLINE
92 let l:git_branch = FugitiveHead() 92 let l:git_branch = FugitiveHead()
93 return '' 93 return ''
94 \ ."%#".a:highlight_group."#" 94 \ ."%#".a:highlight_group."#"
95 \ ."%3( \ %)\ " 95 \ ."%3( 📂\ %)\ "
96 \ ."%{getcwd(-1)}\ " 96 \ ."%{getcwd(-1)}\ "
97 \ ."%{FugitiveHead()==''?'':g:status_sym_sep_start.' '.g:symbol_branch.' '.FugitiveHead().' '}" 97 \ ."%{FugitiveHead()==''?'':g:status_sym_sep_start.' '.g:symbol_branch.' '.FugitiveHead().' '}"
98 \ ."%#".l:invert_group."#" 98 \ ."%#".l:invert_group."#"
..