darkcloud-nvimconfig/vim/config/plugins/lightline.vim

124 lines
4.1 KiB
VimL
Raw Normal View History

function! LLModified()
2024-03-05 21:06:23 -05:00
return &ft =~ "help" ? "" : &modified ? "*" : &modifiable ? "" : "-"
endfunction
function! LLReadonly()
2024-03-05 21:06:23 -05:00
return &ft !~? "help" && &readonly ? "[RO]" : ""
endfunction
function! LLFilename()
2024-03-05 21:06:23 -05:00
let fname = expand("%:t")
return
2024-03-06 02:08:39 -05:00
\ fname == "__vista__" ? "" :
2024-03-05 21:06:23 -05:00
\ &ft == "qf" ? "[Error/Location List]" :
\ ("" != LLReadonly() ? LLReadonly() . " " : "") .
\ ("" != fname ? fname : "[NEW]") .
\ ("" != LLModified() ? " " . LLModified() : "")
endfunction
function! LLFugitive()
2024-03-06 02:08:39 -05:00
if expand("%:t") !~? "__vista__" && exists("*FugitiveHead")
2024-03-05 21:06:23 -05:00
let mark = ""
let _ = FugitiveHead()
2024-03-05 21:06:23 -05:00
return strlen(_) ? mark._ : ""
else
2024-03-05 21:06:23 -05:00
return ""
endif
endfunction
function! LLFileformat()
2024-03-05 21:06:23 -05:00
return winwidth(0) > 70 ? &fileformat : ""
endfunction
function! LLFiletype()
2024-03-05 21:06:23 -05:00
return winwidth(0) > 70 ? (strlen(&filetype) ? &filetype : "none") : ""
endfunction
function! LLFileencoding()
2024-03-05 21:06:23 -05:00
return winwidth(0) > 70 ? (strlen(&fenc) ? &fenc : &enc) : ""
endfunction
function! LLMode()
2024-03-05 21:06:23 -05:00
let fname = expand("%:t")
2024-03-06 02:08:39 -05:00
return fname == "__vista__" ? "Vista" :
2024-03-05 21:06:23 -05:00
\ winwidth(0) > 60 ? lightline#mode() : ""
endfunction
let g:lightline = {
2024-03-05 21:06:23 -05:00
\ "enable": {
\ "statusline": 1,
\ "tabline": 1
\ },
\
2024-03-05 21:06:23 -05:00
\ "component_function": {
2024-03-06 02:08:39 -05:00
\ "mode": "LLMode",
2024-03-05 21:06:23 -05:00
\ "fugitive": "LLFugitive",
\ "filename": "LLFilename",
\ "fileformat": "LLFileformat",
\ "fileencoding": "LLFileencoding",
2024-03-06 02:08:39 -05:00
\ "filetype": "LLFiletype",
\ },
\
2024-03-05 21:06:23 -05:00
\ "component_expand": {
\ "linter_checking": "lightline#ale#checking",
\ "linter_warnings": "lightline#ale#warnings",
\ "linter_errors": "lightline#ale#errors",
\ "linter_ok": "lightline#ale#ok"
\ },
\
2024-03-05 21:06:23 -05:00
\ "component_type": {
\ "linter_checking": "left",
\ "linter_warnings": "warning",
\ "linter_errors": "error",
\ "linter_ok": "left"
\ },
\
2024-03-05 21:06:23 -05:00
\ "active": {
2024-03-06 02:08:39 -05:00
\ "left": [[ "mode", "paste" ], [ "fugitive", "filename" ]],
2024-03-05 21:06:23 -05:00
\ "right": [[ "linter_checking", "linter_errors", "linter_warnings", "linter_ok" ], [ "fileformat", "fileencoding", "filetype" ], [ "percent", "lineinfo" ]]
2018-03-13 11:32:04 -04:00
\ }
\ }
let g:lightline#ale#indicator_checking = ""
let g:lightline#ale#indicator_warnings = "W:"
let g:lightline#ale#indicator_errors = "E:"
let g:lightline#ale#indicator_ok = "OK"
"status bar config with and without powerline fonts (default: 0)
if &term != "linux" && g:enablepowerline == 1
2024-03-05 21:06:23 -05:00
let g:lightline.separator = { "left": "", "right": "" }
let g:lightline.subseparator = { "left": "", "right": "" }
else
2024-03-05 21:06:23 -05:00
let g:lightline.separator = { "left": "", "right": "" }
let g:lightline.subseparator = { "left": "|", "right": "|" }
let g:lightline.tabline_subseparator = { "left": "", "right": "" }
endif
"ligtline theme {{{
2024-03-05 21:06:23 -05:00
let s:p = { "normal": {}, "inactive": {}, "insert": {}, "replace": {}, "visual": {}, "tabline": {} }
2018-03-13 11:32:04 -04:00
let g:lightline.colorscheme = "darkcloud"
let s:p.normal.left = [[ g:cBlue, g:cDarkBg ], [ g:cWhite, g:cLightBg ]]
let s:p.inactive.left = [[ g:cGray3, g:cDarkBg ], [ g:cGray3, g:cLightBg ]]
let s:p.normal.right = [[ g:cWhite, g:cDarkBg ], [ g:cWhite, g:cLightBg ], [ g:cWhite, g:cDarkBg ]]
let s:p.inactive.right = [[ g:cGray3, g:cDarkBg ], [ g:cGray3, g:cLightBg ], [ g:cGray3, g:cDarkBg ]]
let s:p.insert.left = [[ g:cRed, g:cLightBg ], [ g:cWhite, g:cDarkBg ]]
let s:p.replace.left = [[ g:cLightBg, g:cRed ], [ g:cWhite, g:cDarkBg ]]
let s:p.visual.left = [[ g:cYellow, g:cLightBg ], [ g:cWhite, g:cDarkBg ]]
let s:p.normal.middle = [[ g:cWhite, g:cLightBg ]]
let s:p.normal.error = [[ g:cRed, g:cLightBg ]]
let s:p.normal.warning = [[ g:cYellow, g:cLightBg ]]
2023-08-17 16:17:46 -04:00
let s:p.tabline.left = [[ g:cGray2, g:cLightBg ]]
let s:p.tabline.tabsel = [[ g:cWhite, g:cDarkBg ]]
let s:p.tabline.middle = [[ g:cGray2, g:cLightBg ]]
let s:p.tabline.right = [[ g:cWhite, g:cDarkBg ]]
2024-03-05 21:06:23 -05:00
let g:lightline#colorscheme#darkcloud#palette = lightline#colorscheme#fill(s:p)
"}}}