VimPlugin: lightline

From wikinotes
Revision as of 17:04, 10 February 2024 by Will (talk | contribs)

lightweight viml powerline clone w/ api for hooking other plugin info.

Documentation

github https://github.com/itchyny/lightline.vim

Configuration

Information that is presented in the line is encapsulated into a **component**

let g:lightline = {
      \ 'active': {
      \   'left': [ 'filename', 'modified', 'helloworld' ]
      \ },
      \ 'component': {
      \   'helloworld': 'Hello, world!'
      \ },
      \ }