summaryrefslogtreecommitdiff
path: root/plugin/statusline.vim
diff options
context:
space:
mode:
authorAkshay <[email protected]>2024-07-23 20:26:43 +0100
committerAkshay <[email protected]>2024-07-23 20:26:43 +0100
commitddc6f72c5b1cf6916ef2705b226d0c53950b9386 (patch)
tree56b1d651dfe18a5e45b8cc6477ff8cb49991d98c /plugin/statusline.vim
init
Diffstat (limited to 'plugin/statusline.vim')
-rw-r--r--plugin/statusline.vim137
1 files changed, 137 insertions, 0 deletions
diff --git a/plugin/statusline.vim b/plugin/statusline.vim
new file mode 100644
index 0000000..a5264a4
--- /dev/null
+++ b/plugin/statusline.vim
@@ -0,0 +1,137 @@
1scriptencoding utf-8
2
3" statusline
4
5let g:currentmode={
6 \ 'n' : 'NORMAL ',
7 \ 'no' : 'N·OPERATOR PENDING ',
8 \ 'v' : 'VISUAL ',
9 \ 'V' : 'V·LINE ',
10 \ '' : 'V·BLOCK ',
11 \ 's' : 'SELECT ',
12 \ 'S' : 'S·LINE ',
13 \ '' : 'S·BLOCK ',
14 \ 'i' : 'INSERT ',
15 \ 'R' : 'REPLACE ',
16 \ 'Rv' : 'V·REPLACE ',
17 \ 'c' : 'COMMAND ',
18 \ 'cv' : 'VIM EX ',
19 \ 'ce' : 'EX ',
20 \ 'r' : 'PROMPT ',
21 \ 'rm' : 'MORE ',
22 \ 'r?' : 'CONFIRM ',
23 \ '!' : 'SHELL ',
24 \ 't' : 'TERMINAL '}
25
26hi PrimaryBlock ctermfg=00 ctermbg=6
27hi SecondaryBlock ctermfg=07 ctermbg=10
28hi Blanks ctermfg=08 ctermbg=0
29
30hi User1 ctermfg=01 ctermbg=0
31hi User2 ctermfg=02 ctermbg=0
32hi User3 ctermfg=03 ctermbg=0
33hi User4 ctermfg=12 ctermbg=0
34hi User5 ctermfg=05 ctermbg=0
35hi User6 ctermfg=06 ctermbg=0
36hi User7 ctermfg=07 ctermbg=0
37hi User8 ctermfg=08 ctermbg=0
38hi User9 ctermfg=00 ctermbg=0
39
40highlight EndOfBuffer ctermfg=black ctermbg=black
41
42function! ReadOnly() abort
43 if !&modifiable && &readonly
44 return ' RO'
45 elseif &modifiable && &readonly
46 return 'RO'
47 elseif !&modifiable && !&readonly
48 return ''
49 else
50 return ''
51 endif
52endfunction
53
54function! Filepath() abort
55 let l:basename = expand('%:h')
56 let l:filename = expand('%:t')
57 let l:extension = expand('%:e')
58 let l:prefix = (l:basename ==# '' || l:basename ==# '.') ?
59 \ '' : substitute(l:basename . '/', '\C^' . $HOME, '~', '')
60
61 if empty(l:prefix) && empty(l:filename)
62 return printf('%%4*%%f%%*%s %%m%%*', '%4*')
63 elseif empty(l:prefix)
64 return printf('%%4*%%f%%*%s %%m%%*', '%6*')
65 else
66 return printf('%%4*%s%%*%s%s%%*', l:prefix, &modified ? '%6*' : '%4*', l:filename)
67 endif
68endfunction
69
70function! QuickFixStatus() abort
71 let l:qfl=getqflist()
72 let l:qftitle = getqflist({'title' : 0}).title
73 if len(qfl) != 0
74 return l:qftitle
75 else
76 return ''
77endfunction
78
79function! LinterStatus() abort
80 let sl = ''
81 let msgs = []
82 if luaeval('not vim.tbl_isempty(vim.lsp.buf_get_clients(0))')
83 let errs = luaeval("#vim.diagnostic.get(0, { severity = vim.diagnostic.severity.ERROR })")
84 let warns = luaeval("#vim.diagnostic.get(0, { severity = vim.diagnostic.severity.WARN })")
85 if errs != 0
86 call add(msgs, printf('%%5*%s×%%* ', errs))
87 endif
88 if warns != 0
89 call add(msgs, printf('%%3*%s!%%* ', warns))
90 endif
91 return join(msgs, '')
92 else
93 return ''
94 endif
95endfunction
96
97function! StatusLine(mode) abort
98 let l:line=''
99
100 " help or man pages
101 if &filetype ==# 'help' || &filetype ==# 'man'
102 let l:line.=' %#StatusLineNC# ['. &filetype .'] %f '
103 return l:line
104 endif
105
106 " active
107 if a:mode ==# 'active'
108 let l:line.=Filepath()
109 let l:line.='%5*'
110 let l:line.=QuickFixStatus()
111
112 let l:line.='%5*'
113 let l:line.=' %{ReadOnly()} %w%*'
114 let l:line.='%9* %=%*'
115
116 let l:line.=' ' . '%7*%l,%c%*' . ' '
117 let l:line.=LinterStatus()
118 let l:line.='%4*'. &filetype
119
120 else
121 " inactive
122 let l:line.='%#Blanks#'
123 let l:line.='%f %5*%m%*'
124 let l:line.='%#Blanks# %=%*'
125 endif
126
127 let l:line.='%*'
128
129 return l:line
130endfunction
131
132set statusline=%!StatusLine('active')
133augroup MyStatusLine
134 autocmd!
135 autocmd WinEnter * setl statusline=%!StatusLine('active')
136 autocmd WinLeave * setl statusline=%!StatusLine('inactive')
137augroup END