2021-05-13 19:01:37 +00:00
|
|
|
*lualine.txt* blazing fast and easy to configure statusline
|
|
|
|
*lualine.nvim* *lualine*
|
2021-02-15 18:06:45 +00:00
|
|
|
__ __ __ ______ __ __ __ __ ______
|
|
|
|
/\ \ /\ \/\ \ /\ __ \ /\ \ /\ \ /\ "-.\ \ /\ ___\
|
|
|
|
\ \ \____ \ \ \_\ \ \ \ __ \ \ \ \____ \ \ \ \ \ \-. \ \ \ __\
|
|
|
|
\ \_____\ \ \_____\ \ \_\ \_\ \ \_____\ \ \_\ \ \_\\"\_\ \ \_____\
|
|
|
|
\/_____/ \/_____/ \/_/\/_/ \/_____/ \/_/ \/_/ \/_/ \/_____/
|
|
|
|
|
2021-05-13 19:01:37 +00:00
|
|
|
Author: hoob3rt (https://github.com/hoob3rt)
|
|
|
|
License: MIT License
|
|
|
|
Repository: https://github.com/hoob3rt/lualine.nvim
|
2021-02-09 14:27:42 +00:00
|
|
|
|
2021-05-13 19:01:37 +00:00
|
|
|
==============================================================================
|
|
|
|
CONTENTS *lualine-contents*
|
|
|
|
|
|
|
|
1. lualine.nvim..........................................|lualine-lualine.nvim|
|
|
|
|
1.1. Usage and customization..............|lualine-usage_and_customization|
|
|
|
|
1.1.1 Starting lualine.........................|lualine-starting_lualine|
|
|
|
|
1.1.2 Setting a theme.....................................|lualine-theme|
|
|
|
|
1.1.3 Separators.....................................|lualine-separators|
|
|
|
|
1.1.4 Changing components............................|lualine-components|
|
|
|
|
1.1.5 Custom components.......................|lualine-custom_components|
|
|
|
|
1.1.6 Component options.......................|lualine-component_options|
|
|
|
|
1.1.7 Tabline...........................................|lualine-tabline|
|
|
|
|
1.1.8 Extensions.....................................|lualine-extensions|
|
2021-05-13 21:19:11 +00:00
|
|
|
1.1.8 Disabling lualine.................................|lualine-disable|
|
2021-05-13 19:01:37 +00:00
|
|
|
|
|
|
|
==============================================================================
|
|
|
|
USAGE AND CUSTOMIZATION *lualine-usage_and_customization*
|
2021-02-09 14:27:42 +00:00
|
|
|
|
|
|
|
Lualine has sections as shown below.
|
|
|
|
>
|
|
|
|
+-------------------------------------------------+
|
2021-04-12 15:04:32 +00:00
|
|
|
| A | B | C X | Y | Z |
|
2021-02-09 14:27:42 +00:00
|
|
|
+-------------------------------------------------+
|
|
|
|
|
|
|
|
Each sections holds it's components e.g. current vim's mode.
|
|
|
|
|
2021-05-13 19:01:37 +00:00
|
|
|
Default config~
|
2021-02-09 14:27:42 +00:00
|
|
|
>
|
2021-05-13 19:01:37 +00:00
|
|
|
require'lualine'.setup {
|
|
|
|
options = {
|
|
|
|
icons_enabled = true,
|
|
|
|
theme = 'gruvbox',
|
|
|
|
component_separators = {'', ''},
|
|
|
|
section_separators = {'', ''},
|
|
|
|
disabled_filetypes = {}
|
|
|
|
},
|
|
|
|
sections = {
|
|
|
|
lualine_a = {'mode'},
|
|
|
|
lualine_b = {'branch'},
|
|
|
|
lualine_c = {'filename'},
|
|
|
|
lualine_x = {'encoding', 'fileformat', 'filetype'},
|
|
|
|
lualine_y = {'progress'},
|
|
|
|
lualine_z = {'location'}
|
|
|
|
},
|
|
|
|
inactive_sections = {
|
|
|
|
lualine_a = {},
|
|
|
|
lualine_b = {},
|
|
|
|
lualine_c = {'filename'},
|
|
|
|
lualine_x = {'location'},
|
|
|
|
lualine_y = {},
|
|
|
|
lualine_z = {}
|
|
|
|
},
|
|
|
|
tabline = {},
|
|
|
|
extensions = {}
|
|
|
|
}
|
2021-02-09 14:27:42 +00:00
|
|
|
|
2021-08-04 01:13:37 +00:00
|
|
|
If you want to get your current lualine config. you can
|
|
|
|
do so with >
|
|
|
|
require'lualine'.get_config()
|
|
|
|
|
|
|
|
<
|
2021-05-13 21:19:11 +00:00
|
|
|
------------------------------------------------------------------------------
|
|
|
|
STARTING LUALINE *lualine-starting_lualine* *lualine.setup()*
|
|
|
|
>
|
|
|
|
require('lualine').setup()
|
|
|
|
|
2021-05-13 19:01:37 +00:00
|
|
|
------------------------------------------------------------------------------
|
|
|
|
SETTING A THEME *lualine-theme*
|
2021-02-09 14:27:42 +00:00
|
|
|
>
|
2021-04-12 15:04:32 +00:00
|
|
|
options = {theme = 'gruvbox'}
|
2021-02-09 14:27:42 +00:00
|
|
|
|
2021-05-13 19:01:37 +00:00
|
|
|
Available themes are listed here:
|
|
|
|
https://github.com/hoob3rt/lualine.nvim/blob/master/THEMES.md
|
2021-04-12 06:25:21 +00:00
|
|
|
|
2021-05-13 19:01:37 +00:00
|
|
|
Customizing themes~
|
2021-04-12 06:25:21 +00:00
|
|
|
>
|
|
|
|
local custom_gruvbox = require'lualine.themes.gruvbox'
|
|
|
|
|
2021-05-27 17:53:27 +00:00
|
|
|
-- Change the background of lualine_c section for normal mode
|
2021-04-12 06:25:21 +00:00
|
|
|
custom_gruvbox.normal.c.bg = '#112233' -- rgb colors are supported
|
|
|
|
|
|
|
|
require'lualine'.setup{
|
|
|
|
options = { theme = custom_gruvbox },
|
|
|
|
...
|
|
|
|
}
|
|
|
|
<
|
2021-05-13 19:01:37 +00:00
|
|
|
Theme structure is available here:
|
|
|
|
https://github.com/hoob3rt/lualine.nvim/blob/master/CONTRIBUTING.md#adding-a-theme
|
2021-04-12 06:25:21 +00:00
|
|
|
|
2021-05-13 19:01:37 +00:00
|
|
|
------------------------------------------------------------------------------
|
|
|
|
SEPARATORS *lualine-separators*
|
2021-02-09 14:27:42 +00:00
|
|
|
|
2021-05-13 19:01:37 +00:00
|
|
|
Lualine defines two kinds of seperators:
|
|
|
|
* |section_separators| - separators between sections
|
|
|
|
* |components_separators| - separators between components in sections
|
2021-02-09 14:27:42 +00:00
|
|
|
>
|
2021-04-12 15:04:32 +00:00
|
|
|
options = {
|
|
|
|
section_separators = {'', ''},
|
|
|
|
component_separators = {'', ''}
|
|
|
|
}
|
2021-02-09 14:27:42 +00:00
|
|
|
|
2021-05-13 19:01:37 +00:00
|
|
|
Disabling separators~
|
2021-02-09 14:27:42 +00:00
|
|
|
>
|
2021-04-12 15:04:32 +00:00
|
|
|
options = {section_separators = '', component_separators = ''}
|
2021-02-09 14:27:42 +00:00
|
|
|
|
2021-05-13 19:01:37 +00:00
|
|
|
------------------------------------------------------------------------------
|
|
|
|
CHANGING COMPONENTS IN LUALINE SECTIONS *lualine-components*
|
2021-02-09 14:27:42 +00:00
|
|
|
|
2021-05-13 19:01:37 +00:00
|
|
|
`sections = {lualine_a = {'mode'}}`
|
2021-02-09 14:27:42 +00:00
|
|
|
|
|
|
|
Available components~
|
|
|
|
general~
|
2021-05-13 19:01:37 +00:00
|
|
|
* |branch| (git branch)
|
|
|
|
* |diagnostics| (diagnostics count from your preferred source)
|
|
|
|
* |encoding| (file encoding)
|
|
|
|
* |fileformat| (file format)
|
|
|
|
* |filename|
|
|
|
|
* |filetype|
|
|
|
|
* |hostname|
|
|
|
|
* |location| (location in file in line:column format)
|
|
|
|
* |mode| (vim mode)
|
|
|
|
* |progress| (%progress in file)
|
|
|
|
* |diff| (git diff status)
|
|
|
|
|
|
|
|
------------------------------------------------------------------------------
|
|
|
|
CUSTOM COMPONENTS *lualine-custom_components*
|
|
|
|
|
|
|
|
Lua functions as lualine component~
|
2021-02-09 14:27:42 +00:00
|
|
|
>
|
|
|
|
local function hello()
|
|
|
|
return [[hello world]]
|
|
|
|
end
|
2021-04-12 15:04:32 +00:00
|
|
|
sections = {lualine_a = {hello}}
|
2021-02-09 14:27:42 +00:00
|
|
|
<
|
2021-05-13 19:01:37 +00:00
|
|
|
Vim functions as lualine component~
|
2021-02-10 10:40:29 +00:00
|
|
|
>
|
2021-04-12 15:04:32 +00:00
|
|
|
sections = {lualine_a = {'FugitiveHead'}}
|
2021-02-10 10:40:29 +00:00
|
|
|
<
|
2021-05-13 19:01:37 +00:00
|
|
|
Vim variables as lualine component~
|
2021-02-10 10:40:29 +00:00
|
|
|
|
2021-05-13 19:01:37 +00:00
|
|
|
Variables from `g:`, `v:`, `t:`, `w:`, `b:`, `o`, `go:`, `vo:`, `to:`, `wo:`, `bo:` scopes can be used.
|
|
|
|
See `:h lua-vim-variables` and `:h lua-vim-options` if you are not sure what to use.
|
2021-02-10 10:40:29 +00:00
|
|
|
>
|
2021-04-12 15:04:32 +00:00
|
|
|
sections = {lualine_a = {'g:coc_status', 'bo:filetype'}}
|
2021-02-10 10:40:29 +00:00
|
|
|
<
|
2021-05-13 19:01:37 +00:00
|
|
|
Lua expressions as lualine component~
|
2021-04-12 06:14:43 +00:00
|
|
|
|
2021-05-13 19:01:37 +00:00
|
|
|
You can use any valid lua expression as a component including
|
|
|
|
* oneliners
|
|
|
|
* global variables
|
|
|
|
* require statements
|
2021-04-12 06:14:43 +00:00
|
|
|
>
|
2021-05-13 19:01:37 +00:00
|
|
|
sections = {lualine_c = {"os.data('%a')", 'data', require'lsp-status'.status}}
|
2021-02-15 18:09:12 +00:00
|
|
|
|
2021-05-13 19:01:37 +00:00
|
|
|
`data` is a global variable in this example.
|
2021-02-15 18:09:12 +00:00
|
|
|
|
2021-05-13 19:01:37 +00:00
|
|
|
------------------------------------------------------------------------------
|
|
|
|
COMPONENT OPTIONS *lualine-component_options*
|
2021-02-15 18:09:12 +00:00
|
|
|
|
2021-05-13 19:01:37 +00:00
|
|
|
Component options can change the way a component behave.
|
|
|
|
There are two kinds of options:
|
|
|
|
* global options affecting all components
|
|
|
|
* local options affecting specific
|
2021-04-06 14:03:41 +00:00
|
|
|
|
2021-05-13 19:01:37 +00:00
|
|
|
Global options can be used as local options (can be applied to specific components)
|
|
|
|
but you cannot use local options as global.
|
|
|
|
Global option used locally overwrites the global, for example:
|
|
|
|
>
|
|
|
|
require'lualine'.setup {
|
|
|
|
options = {lower = true},
|
|
|
|
sections = {lualine_a = {{'mode', lower = false}}, lualine_b = {'branch'}}
|
|
|
|
}
|
2021-05-02 17:16:03 +00:00
|
|
|
|
2021-05-13 19:01:37 +00:00
|
|
|
`mode` will be displayed with `lower = false` and `branch` will be displayed with `lower = true`
|
2021-04-12 15:04:32 +00:00
|
|
|
|
2021-05-13 19:01:37 +00:00
|
|
|
Available options:~
|
2021-04-12 15:04:32 +00:00
|
|
|
|
2021-05-13 19:01:37 +00:00
|
|
|
Global options~
|
2021-04-12 15:04:32 +00:00
|
|
|
---------------
|
2021-05-13 19:01:37 +00:00
|
|
|
>
|
|
|
|
options = {
|
|
|
|
icons_enabled = 1, -- displays icons in alongside component
|
|
|
|
padding = 1, -- adds padding to the left and right of components
|
|
|
|
left_padding = 1, -- adds padding to the left of components
|
|
|
|
right_padding =1, -- adds padding to the right of components
|
|
|
|
upper = false, -- displays components in uppercase
|
|
|
|
lower = false, -- displays components in lowercase
|
|
|
|
format = nil -- format function, formats component's output
|
|
|
|
}
|
|
|
|
|
|
|
|
Local options~
|
|
|
|
---------------
|
|
|
|
>
|
|
|
|
sections = {
|
|
|
|
lualine_a = {
|
|
|
|
{
|
|
|
|
'mode',
|
|
|
|
icon = nil, -- displays icon in front of the component
|
2021-05-07 17:24:42 +00:00
|
|
|
separator = nil, -- Determines what separator to use for the component.
|
2021-05-13 19:01:37 +00:00
|
|
|
condition = nil, -- condition function, component is loaded when function returns true
|
|
|
|
-- custom color for component in format
|
|
|
|
-- color = {fg = '#rrggbb', bg= '#rrggbb', gui='style'}
|
|
|
|
-- or highlight group
|
|
|
|
-- color = "WarningMsg"
|
|
|
|
color = nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-02-15 18:09:12 +00:00
|
|
|
|
2021-05-13 19:01:37 +00:00
|
|
|
Component specific local options~
|
|
|
|
---------------
|
2021-04-06 14:03:41 +00:00
|
|
|
|
2021-05-13 19:01:37 +00:00
|
|
|
* diagnostics~
|
|
|
|
>
|
|
|
|
sections = {
|
|
|
|
lualine_a = {
|
|
|
|
{
|
|
|
|
'diagnostics',
|
|
|
|
-- table of diagnostic sources, available sources:
|
|
|
|
-- nvim_lsp, coc, ale, vim_lsp
|
|
|
|
sources = nil,
|
|
|
|
-- displays diagnostics from defined severity
|
2021-05-25 20:13:43 +00:00
|
|
|
sections = {'error', 'warn', 'info', 'hint'},
|
2021-05-13 19:01:37 +00:00
|
|
|
-- all colors are in format #rrggbb
|
|
|
|
color_error = nil, -- changes diagnostic's error foreground color
|
|
|
|
color_warn = nil, -- changes diagnostic's warn foreground color
|
|
|
|
color_info = nil, -- Changes diagnostic's info foreground color
|
2021-05-25 20:13:43 +00:00
|
|
|
color_hint = nil, -- Changes diagnostic's hint foreground color
|
|
|
|
symbols = {error = 'E', warn = 'W', info = 'I', hint = 'H'}
|
2021-07-25 07:48:50 +00:00
|
|
|
update_in_insert = false, -- Update diagnostics in insert mode
|
2021-05-13 19:01:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-04-06 14:03:41 +00:00
|
|
|
|
2021-05-13 19:01:37 +00:00
|
|
|
* filename~
|
2021-04-06 14:03:41 +00:00
|
|
|
>
|
2021-05-13 19:01:37 +00:00
|
|
|
sections = {
|
|
|
|
lualine_a = {
|
|
|
|
{
|
|
|
|
'filename',
|
|
|
|
file_status = true, -- displays file status (readonly status, modified status)
|
|
|
|
path = 0 -- 0 = just filename, 1 = relative path, 2 = absolute path
|
2021-04-06 14:03:41 +00:00
|
|
|
}
|
|
|
|
}
|
2021-05-13 19:01:37 +00:00
|
|
|
}
|
2021-04-06 14:03:41 +00:00
|
|
|
|
2021-05-13 19:01:37 +00:00
|
|
|
* filetype~
|
2021-04-06 14:03:41 +00:00
|
|
|
>
|
2021-05-13 19:01:37 +00:00
|
|
|
sections = {
|
2021-04-06 14:03:41 +00:00
|
|
|
lualine_a = {
|
2021-05-13 19:01:37 +00:00
|
|
|
{
|
|
|
|
'filetype',
|
2021-05-12 09:17:51 +00:00
|
|
|
colored = true, -- displays filetype icon in color if set to `true`
|
|
|
|
disable_text = false -- Display only icon for filetype
|
2021-05-13 19:01:37 +00:00
|
|
|
}
|
2021-04-06 14:03:41 +00:00
|
|
|
}
|
2021-05-13 19:01:37 +00:00
|
|
|
}
|
2021-05-12 09:17:51 +00:00
|
|
|
<
|
2021-05-11 12:55:18 +00:00
|
|
|
|
2021-05-13 19:01:37 +00:00
|
|
|
* diff~
|
2021-02-15 18:09:12 +00:00
|
|
|
>
|
2021-05-13 19:01:37 +00:00
|
|
|
sections = {
|
|
|
|
lualine_a = {
|
|
|
|
{
|
|
|
|
'diff',
|
|
|
|
colored = true, -- displays diff status in color if set to true
|
|
|
|
-- all colors are in format #rrggbb
|
|
|
|
color_added = nil, -- changes diff's added foreground color
|
|
|
|
color_modified = nil, -- changes diff's modified foreground color
|
|
|
|
color_removed = nil, -- changes diff's removed foreground color
|
|
|
|
symbols = {added = '+', modified = '~', removed = '-'} -- changes diff symbols
|
2021-08-03 11:41:37 +00:00
|
|
|
source = nil, -- A function that works as a data source for diff.
|
|
|
|
-- it must return a table like
|
|
|
|
{added = add_count, modified = modified_count, removed = removed_count }
|
|
|
|
-- Or nil on failure. Count <= 0 won't be displayed.
|
2021-04-12 15:04:32 +00:00
|
|
|
}
|
2021-02-15 18:09:12 +00:00
|
|
|
}
|
2021-05-13 19:01:37 +00:00
|
|
|
}
|
2021-03-06 15:03:00 +00:00
|
|
|
|
2021-05-13 19:01:37 +00:00
|
|
|
------------------------------------------------------------------------------
|
|
|
|
TABLINE *lualine-tabline*
|
2021-03-06 15:03:00 +00:00
|
|
|
|
2021-05-13 19:01:37 +00:00
|
|
|
You can use lualine to display components in tabline.
|
|
|
|
The configuration for tabline sections is exactly the same as for statusline.
|
2021-03-06 15:03:00 +00:00
|
|
|
>
|
2021-04-12 15:04:32 +00:00
|
|
|
tabline = {
|
2021-05-13 19:01:37 +00:00
|
|
|
lualine_a = {},
|
|
|
|
lualine_b = {'branch'},
|
|
|
|
lualine_c = {'filename'},
|
|
|
|
lualine_x = {},
|
|
|
|
lualine_y = {},
|
|
|
|
lualine_z = {},
|
2021-03-06 15:03:00 +00:00
|
|
|
}
|
2021-02-15 18:09:12 +00:00
|
|
|
<
|
2021-05-13 19:01:37 +00:00
|
|
|
This will show branch and filename component on top of neovim inside tabline.
|
2021-03-06 15:03:00 +00:00
|
|
|
|
2021-05-13 19:01:37 +00:00
|
|
|
You can also completely move your statuline to tabline by configuring
|
|
|
|
|lualine.tabline| and disabling |lualine.sections| and |lualine.inactive_sections|.
|
2021-03-06 15:03:00 +00:00
|
|
|
>
|
2021-04-12 15:04:32 +00:00
|
|
|
tabline = {
|
2021-03-06 15:03:00 +00:00
|
|
|
......
|
|
|
|
}
|
2021-04-12 15:04:32 +00:00
|
|
|
sections = {}
|
|
|
|
inactive_sections = {}
|
2021-02-09 14:27:42 +00:00
|
|
|
|
2021-05-13 19:01:37 +00:00
|
|
|
------------------------------------------------------------------------------
|
|
|
|
EXTENSIONS *lualine-extensions*
|
2021-02-09 14:27:42 +00:00
|
|
|
|
|
|
|
Lualine extensions change statusline appearance for a window/buffer with
|
2021-05-13 19:01:37 +00:00
|
|
|
specified filetypes.
|
2021-02-09 14:27:42 +00:00
|
|
|
|
2021-05-13 19:01:37 +00:00
|
|
|
By default no extension are loaded to improve performance.
|
|
|
|
You can load extensions with:
|
2021-02-09 14:27:42 +00:00
|
|
|
>
|
2021-05-13 19:01:37 +00:00
|
|
|
extensions = {'quickfix'}
|
2021-02-09 14:27:42 +00:00
|
|
|
<
|
2021-05-14 18:24:54 +00:00
|
|
|
Available extensions~
|
2021-05-13 19:01:37 +00:00
|
|
|
* |chadtree|
|
|
|
|
* |fugitive|
|
|
|
|
* |fzf|
|
|
|
|
* |nerdtree|
|
|
|
|
* |nvim-tree|
|
|
|
|
* |quickfix|
|
2021-05-14 18:24:54 +00:00
|
|
|
*
|
|
|
|
|
|
|
|
Custom extensions~
|
|
|
|
|
|
|
|
You can define your own extensions.
|
|
|
|
If you think an extension might be useful for others then please submit a pr.
|
|
|
|
>
|
|
|
|
local my_extension = {sections = {lualine_a = 'mode'}, filetypes = {'lua'}}
|
|
|
|
require'lualine'.setup {extensions = {my_extension}}
|
2021-05-13 19:01:37 +00:00
|
|
|
|
2021-05-13 21:19:11 +00:00
|
|
|
------------------------------------------------------------------------------
|
2021-05-13 19:01:37 +00:00
|
|
|
DISABLING LUALINE *lualine-disable*
|
|
|
|
|
|
|
|
You can disable lualine for specific filetypes
|
|
|
|
|
|
|
|
`options = {disabled_filetypes = {'lua'}}`
|
|
|
|
------------------------------------------------------------------------------
|
2021-05-12 09:17:51 +00:00
|
|
|
vim:tw=80:sw=4:ts=8:et:ft=help:norl:et:
|