chore: generated vimdoc (#46)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
2ffdff3faf
commit
3cdb37b98e
390
doc/lualine.txt
390
doc/lualine.txt
|
@ -1,42 +1,83 @@
|
||||||
*lualine.txt* blazing fast and easy to configure statusline
|
*lualine.txt* fast and easy to configure statusline plugin for neovim
|
||||||
*lualine.nvim* *lualine*
|
|
||||||
__ __ __ ______ __ __ __ __ ______
|
|
||||||
/\ \ /\ \/\ \ /\ __ \ /\ \ /\ \ /\ "-.\ \ /\ ___\
|
|
||||||
\ \ \____ \ \ \_\ \ \ \ __ \ \ \ \____ \ \ \ \ \ \-. \ \ \ __\
|
|
||||||
\ \_____\ \ \_____\ \ \_\ \_\ \ \_____\ \ \_\ \ \_\\"\_\ \ \_____\
|
|
||||||
\/_____/ \/_____/ \/_/\/_/ \/_____/ \/_/ \/_/ \/_/ \/_____/
|
|
||||||
|
|
||||||
Author: hoob3rt (https://github.com/hoob3rt)
|
|
||||||
License: MIT License
|
|
||||||
Repository: https://github.com/hoob3rt/lualine.nvim
|
|
||||||
|
|
||||||
==============================================================================
|
==============================================================================
|
||||||
CONTENTS *lualine-contents*
|
Table of Contents *lualine-table-of-contents*
|
||||||
|
|
||||||
1. lualine.nvim..........................................|lualine-lualine.nvim|
|
1. lualine.nvim |lualine-lualine.nvim|
|
||||||
1.1. Usage and customization..............|lualine-usage_and_customization|
|
- Contributing |lualine-contributing|
|
||||||
1.1.1 Starting lualine.........................|lualine-starting_lualine|
|
- Performance compared to other plugins|lualine-performance-compared-to-other-plugins|
|
||||||
1.1.2 Setting a theme.....................................|lualine-theme|
|
- Installation |lualine-installation|
|
||||||
1.1.3 Separators.....................................|lualine-separators|
|
- Usage and customization |lualine-usage-and-customization|
|
||||||
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|
|
|
||||||
1.1.8 Disabling lualine.................................|lualine-disable|
|
|
||||||
|
|
||||||
==============================================================================
|
==============================================================================
|
||||||
USAGE AND CUSTOMIZATION *lualine-usage_and_customization*
|
1. lualine.nvim *lualine-lualine.nvim*
|
||||||
|
|
||||||
|
A fast and easy to configure statusline plugin for neovim
|
||||||
|
|
||||||
|
`lualine.nvim` requires neovim 0.5
|
||||||
|
|
||||||
|
CONTRIBUTING *lualine-contributing*
|
||||||
|
|
||||||
|
Feel free to create an issue/pr if you want to see anything else implemented.
|
||||||
|
If you have some question or need help with configuration start a discussion
|
||||||
|
<https://github.com/shadmansaleh/lualine.nvim/discussions>.
|
||||||
|
|
||||||
|
Please read CONTRIBUTING.md <./CONTRIBUTING.md> before opening a pr. You can
|
||||||
|
also help with documentation in wiki
|
||||||
|
<https://github.com/shadmansaleh/lualine.nvim/wiki>
|
||||||
|
|
||||||
|
PERFORMANCE COMPARED TO OTHER PLUGINS*lualine-performance-compared-to-other-plugins*
|
||||||
|
|
||||||
|
Unlike other statusline plugins lualine loads only defined components, nothing
|
||||||
|
else.
|
||||||
|
|
||||||
|
Startup time performance measured with an amazing plugin
|
||||||
|
tweekmonster/startuptime.vim <https://github.com/tweekmonster/startuptime.vim>
|
||||||
|
|
||||||
|
All times are measured with only `startuptime.vim` and given statusline plugin
|
||||||
|
installed
|
||||||
|
|
||||||
|
│clean vimrc│lualine │lightline│ airline │
|
||||||
|
│ 8.943 ms │9.034 ms│11.463 ms│13.425 ms│
|
||||||
|
|
||||||
|
|
||||||
|
INSTALLATION *lualine-installation*
|
||||||
|
|
||||||
|
VIM-PLUG <HTTPS://GITHUB.COM/JUNEGUNN/VIM-PLUG>
|
||||||
|
|
||||||
|
>
|
||||||
|
Plug 'hoob3rt/lualine.nvim'
|
||||||
|
" If you want to have icons in your statusline choose one of these
|
||||||
|
Plug 'kyazdani42/nvim-web-devicons'
|
||||||
|
Plug 'ryanoasis/vim-devicons'
|
||||||
|
<
|
||||||
|
|
||||||
|
|
||||||
|
PACKER.NVIM <HTTPS://GITHUB.COM/WBTHOMASON/PACKER.NVIM>
|
||||||
|
|
||||||
|
>
|
||||||
|
use {
|
||||||
|
'hoob3rt/lualine.nvim',
|
||||||
|
requires = {'kyazdani42/nvim-web-devicons', opt = true}
|
||||||
|
}
|
||||||
|
<
|
||||||
|
|
||||||
|
|
||||||
|
USAGE AND CUSTOMIZATION *lualine-usage-and-customization*
|
||||||
|
|
||||||
Lualine has sections as shown below.
|
Lualine has sections as shown below.
|
||||||
|
|
||||||
>
|
>
|
||||||
+-------------------------------------------------+
|
+-------------------------------------------------+
|
||||||
| A | B | C X | Y | Z |
|
| A | B | C X | Y | Z |
|
||||||
+-------------------------------------------------+
|
+-------------------------------------------------+
|
||||||
|
<
|
||||||
|
|
||||||
Each sections holds it's components e.g. current vim's mode.
|
|
||||||
|
|
||||||
Default config~
|
Each sections holds it’s components e.g. current vim’s mode.
|
||||||
|
|
||||||
|
Default config
|
||||||
|
|
||||||
>
|
>
|
||||||
require'lualine'.setup {
|
require'lualine'.setup {
|
||||||
options = {
|
options = {
|
||||||
|
@ -66,139 +107,188 @@ Default config~
|
||||||
tabline = {},
|
tabline = {},
|
||||||
extensions = {}
|
extensions = {}
|
||||||
}
|
}
|
||||||
|
|
||||||
If you want to get your current lualine config. you can
|
|
||||||
do so with >
|
|
||||||
require'lualine'.get_config()
|
|
||||||
|
|
||||||
<
|
<
|
||||||
|
|
||||||
|
|
||||||
|
If you want to get your current lualine config. you can do so with
|
||||||
|
|
||||||
|
>
|
||||||
|
require'lualine'.get_config()
|
||||||
|
<
|
||||||
|
|
||||||
|
|
||||||
------------------------------------------------------------------------------
|
------------------------------------------------------------------------------
|
||||||
STARTING LUALINE *lualine-starting_lualine* *lualine.setup()*
|
|
||||||
|
STARTING LUALINE
|
||||||
|
|
||||||
>
|
>
|
||||||
require('lualine').setup()
|
require('lualine').setup()
|
||||||
|
<
|
||||||
|
|
||||||
|
|
||||||
------------------------------------------------------------------------------
|
------------------------------------------------------------------------------
|
||||||
SETTING A THEME *lualine-theme*
|
|
||||||
|
SETTING A THEME
|
||||||
|
|
||||||
>
|
>
|
||||||
options = {theme = 'gruvbox'}
|
options = {theme = 'gruvbox'}
|
||||||
|
<
|
||||||
|
|
||||||
Available themes are listed here:
|
|
||||||
https://github.com/hoob3rt/lualine.nvim/blob/master/THEMES.md
|
|
||||||
|
|
||||||
Customizing themes~
|
All available themes are listed in THEMES.md <./THEMES.md>
|
||||||
|
|
||||||
|
Please create a pr if you managed to port a popular theme before me, here is
|
||||||
|
how to do it <./CONTRIBUTING.md>.
|
||||||
|
|
||||||
|
Customizing themes
|
||||||
|
|
||||||
>
|
>
|
||||||
local custom_gruvbox = require'lualine.themes.gruvbox'
|
local custom_gruvbox = require'lualine.themes.gruvbox'
|
||||||
|
|
||||||
-- Change the background of lualine_c section for normal mode
|
-- Change the background of lualine_c section for normal mode
|
||||||
custom_gruvbox.normal.c.bg = '#112233' -- rgb colors are supported
|
custom_gruvbox.normal.c.bg = '#112233' -- rgb colors are supported
|
||||||
|
|
||||||
require'lualine'.setup{
|
require'lualine'.setup{
|
||||||
options = { theme = custom_gruvbox },
|
options = { theme = custom_gruvbox },
|
||||||
...
|
...
|
||||||
}
|
}
|
||||||
<
|
<
|
||||||
Theme structure is available here:
|
|
||||||
https://github.com/hoob3rt/lualine.nvim/blob/master/CONTRIBUTING.md#adding-a-theme
|
|
||||||
|
Theme structure is available here
|
||||||
|
<https://github.com/hoob3rt/lualine.nvim/blob/master/CONTRIBUTING.md#adding-a-theme>
|
||||||
|
|
||||||
------------------------------------------------------------------------------
|
------------------------------------------------------------------------------
|
||||||
SEPARATORS *lualine-separators*
|
|
||||||
|
|
||||||
Lualine defines two kinds of seperators:
|
SEPARATORS
|
||||||
* |section_separators| - separators between sections
|
|
||||||
* |components_separators| - separators between components in sections
|
Lualine defines two kinds of separators:
|
||||||
|
|
||||||
|
|
||||||
|
- `section_separators` - separators between sections
|
||||||
|
- `components_separators` - separators between components in sections
|
||||||
|
|
||||||
|
|
||||||
>
|
>
|
||||||
options = {
|
options = {
|
||||||
section_separators = {'', ''},
|
section_separators = {'', ''},
|
||||||
component_separators = {'', ''}
|
component_separators = {'', ''}
|
||||||
}
|
}
|
||||||
|
<
|
||||||
|
|
||||||
|
|
||||||
|
Disabling separators
|
||||||
|
|
||||||
Disabling separators~
|
|
||||||
>
|
>
|
||||||
options = {section_separators = '', component_separators = ''}
|
options = {section_separators = '', component_separators = ''}
|
||||||
|
<
|
||||||
|
|
||||||
|
|
||||||
------------------------------------------------------------------------------
|
------------------------------------------------------------------------------
|
||||||
CHANGING COMPONENTS IN LUALINE SECTIONS *lualine-components*
|
|
||||||
|
|
||||||
`sections = {lualine_a = {'mode'}}`
|
CHANGING COMPONENTS IN LUALINE SECTIONS
|
||||||
|
|
||||||
Available components~
|
>
|
||||||
general~
|
sections = {lualine_a = {'mode'}}
|
||||||
* |branch| (git branch)
|
<
|
||||||
* |diagnostics| (diagnostics count from your preferred source)
|
|
||||||
* |encoding| (file encoding)
|
|
||||||
* |fileformat| (file format)
|
|
||||||
* |filename|
|
|
||||||
* |filesize|
|
|
||||||
* |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~
|
**Available components**
|
||||||
|
|
||||||
|
|
||||||
|
- `branch` (git branch)
|
||||||
|
- `diagnostics` (diagnostics count from your prefered source)
|
||||||
|
- `encoding` (file encoding)
|
||||||
|
- `fileformat` (file format)
|
||||||
|
- `filename`
|
||||||
|
- `filesize`
|
||||||
|
- `filetype`
|
||||||
|
- `hostname`
|
||||||
|
- `location` (location in file in line:column format)
|
||||||
|
- `mode` (vim mode)
|
||||||
|
- `progress` (%progress in file)
|
||||||
|
- `diff` (git diff status)
|
||||||
|
|
||||||
|
|
||||||
|
*lualine-Custom-components*
|
||||||
|
|
||||||
|
LUA FUNCTIONS AS LUALINE COMPONENT
|
||||||
|
|
||||||
>
|
>
|
||||||
local function hello()
|
local function hello()
|
||||||
return [[hello world]]
|
return [[hello world]]
|
||||||
end
|
end
|
||||||
sections = {lualine_a = {hello}}
|
sections = {lualine_a = {hello}}
|
||||||
<
|
<
|
||||||
Vim functions as lualine component~
|
|
||||||
|
|
||||||
|
VIM FUNCTIONS AS LUALINE COMPONENT
|
||||||
|
|
||||||
>
|
>
|
||||||
sections = {lualine_a = {'FugitiveHead'}}
|
sections = {lualine_a = {'FugitiveHead'}}
|
||||||
<
|
<
|
||||||
Vim's statusline items as lualine component~
|
|
||||||
|
|
||||||
|
*lualine-Vim’s-statusline-items-as-lualine-component*
|
||||||
|
|
||||||
>
|
>
|
||||||
sections = {lualine_c = {'%=', '%t%m', '%3p'}}
|
sections = {lualine_c = {'%=', '%t%m', '%3p'}}
|
||||||
<
|
<
|
||||||
|
|
||||||
Vim variables as lualine component~
|
|
||||||
|
|
||||||
Variables from `g:`, `v:`, `t:`, `w:`, `b:`, `o`, `go:`, `vo:`, `to:`, `wo:`, `bo:` scopes can be used.
|
VIM VARIABLES AS LUALINE COMPONENT
|
||||||
See `:h lua-vim-variables` and `:h lua-vim-options` if you are not sure what to use.
|
|
||||||
|
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.
|
||||||
|
|
||||||
>
|
>
|
||||||
sections = {lualine_a = {'g:coc_status', 'bo:filetype'}}
|
sections = {lualine_a = {'g:coc_status', 'bo:filetype'}}
|
||||||
<
|
<
|
||||||
Lua expressions as lualine component~
|
|
||||||
|
|
||||||
You can use any valid lua expression as a component including
|
|
||||||
* oneliners
|
LUA EXPRESSIONS AS LUALINE COMPONENT
|
||||||
* global variables
|
|
||||||
* require statements
|
You can use any valid lua expression as a component including * oneliners *
|
||||||
|
global variables * require statements
|
||||||
|
|
||||||
>
|
>
|
||||||
sections = {lualine_c = {"os.date('%a')", 'data', require'lsp-status'.status}}
|
sections = {lualine_c = {"os.date('%a')", 'data', "require'lsp-status'.status()"}}
|
||||||
|
<
|
||||||
|
|
||||||
|
|
||||||
`data` is a global variable in this example.
|
`data` is a global variable in this example.
|
||||||
|
|
||||||
------------------------------------------------------------------------------
|
------------------------------------------------------------------------------
|
||||||
COMPONENT OPTIONS *lualine-component_options*
|
|
||||||
|
|
||||||
Component options can change the way a component behave.
|
COMPONENT OPTIONS
|
||||||
There are two kinds of options:
|
|
||||||
* global options affecting all components
|
Component options can change the way a component behave. There are two kinds of
|
||||||
* local options affecting specific
|
options: * global options affecting all components * local options affecting
|
||||||
|
specific
|
||||||
|
|
||||||
|
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:
|
||||||
|
|
||||||
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 {
|
require'lualine'.setup {
|
||||||
options = {lower = true},
|
options = {lower = true},
|
||||||
sections = {lualine_a = {{'mode', lower = false}}, lualine_b = {'branch'}}
|
sections = {lualine_a = {{'mode', lower = false}}, lualine_b = {'branch'}}
|
||||||
}
|
}
|
||||||
|
<
|
||||||
|
|
||||||
`mode` will be displayed with `lower = false` and `branch` will be displayed with `lower = true`
|
|
||||||
|
|
||||||
Available options:~
|
`mode` will be displayed with `lower = false` and `branch` will be displayed
|
||||||
|
with `lower = true`
|
||||||
|
|
||||||
|
*lualine-Available-options*
|
||||||
|
|
||||||
|
**Global options**
|
||||||
|
|
||||||
Global options~
|
|
||||||
---------------
|
|
||||||
>
|
>
|
||||||
options = {
|
options = {
|
||||||
icons_enabled = 1, -- displays icons in alongside component
|
icons_enabled = true, -- displays icons in alongside component
|
||||||
padding = 1, -- adds padding to the left and right of components
|
padding = 1, -- adds padding to the left and right of components
|
||||||
left_padding = 1, -- adds padding to the left of components
|
left_padding = 1, -- adds padding to the left of components
|
||||||
right_padding =1, -- adds padding to the right of components
|
right_padding =1, -- adds padding to the right of components
|
||||||
|
@ -206,9 +296,11 @@ Global options~
|
||||||
lower = false, -- displays components in lowercase
|
lower = false, -- displays components in lowercase
|
||||||
format = nil -- format function, formats component's output
|
format = nil -- format function, formats component's output
|
||||||
}
|
}
|
||||||
|
<
|
||||||
|
|
||||||
|
|
||||||
|
**Local options**
|
||||||
|
|
||||||
Local options~
|
|
||||||
---------------
|
|
||||||
>
|
>
|
||||||
sections = {
|
sections = {
|
||||||
lualine_a = {
|
lualine_a = {
|
||||||
|
@ -234,16 +326,17 @@ Local options~
|
||||||
-- mod(branch/filename), stl(%f/%m), var(g:coc_status/bo:modifiable),
|
-- mod(branch/filename), stl(%f/%m), var(g:coc_status/bo:modifiable),
|
||||||
-- luae(lua expressions), vimf(viml function name)
|
-- luae(lua expressions), vimf(viml function name)
|
||||||
-- luae is short for lua-expression and vimf is short fror vim-function
|
-- luae is short for lua-expression and vimf is short fror vim-function
|
||||||
-- vim_function(viml function name)
|
|
||||||
type = nil,
|
type = nil,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
<
|
||||||
|
|
||||||
Component specific local options~
|
|
||||||
---------------
|
|
||||||
|
|
||||||
* diagnostics~
|
**Component specific local options**
|
||||||
|
|
||||||
|
*lualine-diagnostics-component-options*
|
||||||
|
|
||||||
>
|
>
|
||||||
sections = {
|
sections = {
|
||||||
lualine_a = {
|
lualine_a = {
|
||||||
|
@ -266,35 +359,43 @@ Component specific local options~
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
<
|
||||||
|
|
||||||
|
|
||||||
|
*lualine-filename-component-options*
|
||||||
|
|
||||||
* filename~
|
|
||||||
>
|
>
|
||||||
sections = {
|
sections = {
|
||||||
lualine_a = {
|
lualine_a = {
|
||||||
{
|
{
|
||||||
'filename',
|
'filename',
|
||||||
file_status = true, -- displays file status (readonly status, modified status)
|
file_status = true, -- displays file status (readonly status, modified status)
|
||||||
path = 0 -- 0 = just filename, 1 = relative path, 2 = absolute path
|
path = 0, -- 0 = just filename, 1 = relative path, 2 = absolute path
|
||||||
shorting_target = 40 -- Shortens path to leave 40 space in the window
|
shorting_target = 40 -- Shortens path to leave 40 space in the window
|
||||||
-- for other components. Terrible name any suggestions?
|
-- for other components. Terrible name any suggestions?
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
<
|
||||||
|
|
||||||
|
|
||||||
|
*lualine-filetype-component-options*
|
||||||
|
|
||||||
* filetype~
|
|
||||||
>
|
>
|
||||||
sections = {
|
sections = {
|
||||||
lualine_a = {
|
lualine_a = {
|
||||||
{
|
{
|
||||||
'filetype',
|
'filetype',
|
||||||
colored = true, -- displays filetype icon in color if set to `true`
|
colored = true, -- displays filetype icon in color if set to `true
|
||||||
disable_text = false -- Display only icon for filetype
|
disable_text = false -- Display only icon for filetype
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
<
|
<
|
||||||
|
|
||||||
* diff~
|
|
||||||
|
*lualine-diff-component-options*
|
||||||
|
|
||||||
>
|
>
|
||||||
sections = {
|
sections = {
|
||||||
lualine_a = {
|
lualine_a = {
|
||||||
|
@ -313,12 +414,16 @@ Component specific local options~
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
<
|
||||||
|
|
||||||
|
|
||||||
------------------------------------------------------------------------------
|
------------------------------------------------------------------------------
|
||||||
TABLINE *lualine-tabline*
|
|
||||||
|
|
||||||
You can use lualine to display components in tabline.
|
TABLINE
|
||||||
The configuration for tabline sections is exactly the same as for statusline.
|
|
||||||
|
You can use lualine to display components in tabline. The configuration for
|
||||||
|
tabline sections is exactly the same as for statusline.
|
||||||
|
|
||||||
>
|
>
|
||||||
tabline = {
|
tabline = {
|
||||||
lualine_a = {},
|
lualine_a = {},
|
||||||
|
@ -326,62 +431,85 @@ The configuration for tabline sections is exactly the same as for statusline.
|
||||||
lualine_c = {'filename'},
|
lualine_c = {'filename'},
|
||||||
lualine_x = {},
|
lualine_x = {},
|
||||||
lualine_y = {},
|
lualine_y = {},
|
||||||
lualine_z = {},
|
lualine_z = {}
|
||||||
}
|
}
|
||||||
<
|
<
|
||||||
This will show branch and filename component on top of neovim inside tabline.
|
|
||||||
|
|
||||||
|
This will show branch and filename component in top of neovim inside tabline.
|
||||||
|
|
||||||
You can also completely move your statuline to tabline by configuring
|
You can also completely move your statuline to tabline by configuring
|
||||||
|lualine.tabline| and disabling |lualine.sections| and |lualine.inactive_sections|.
|
`lualine.tabline` and disabling `lualine.sections` and
|
||||||
|
`lualine.inactive_sections`.
|
||||||
|
|
||||||
>
|
>
|
||||||
tabline = {
|
tabline = {
|
||||||
......
|
......
|
||||||
}
|
},
|
||||||
sections = {}
|
sections = {},
|
||||||
inactive_sections = {}
|
inactive_sections = {},
|
||||||
|
<
|
||||||
|
|
||||||
If you're looking for bufferline or want to show tabs in tabline . There are
|
|
||||||
|
If you’re looking for bufferline or want to show tabs in tabline. There are
|
||||||
manny awesome plugins that can do that. For example:
|
manny awesome plugins that can do that. For example:
|
||||||
|
|
||||||
* [nvim-bufferline](https://github.com/akinsho/nvim-bufferline.lua)
|
|
||||||
* [tabline.nvim](https://github.com/kdheepak/tabline.nvim)
|
|
||||||
|
|
||||||
tabline.nvim even uses lualines theme by default 🙌
|
- nvim-bufferline <https://github.com/akinsho/nvim-bufferline.lua>
|
||||||
You can find a bigger list [here](https://github.com/rockerBOO/awesome-neovim#tabline)
|
- tabline.nvim <https://github.com/kdheepak/tabline.nvim>
|
||||||
|
|
||||||
|
|
||||||
|
tabline.nvim even uses lualines theme by default 🙌 You can find a bigger
|
||||||
|
list here <https://github.com/rockerBOO/awesome-neovim#tabline>
|
||||||
|
|
||||||
------------------------------------------------------------------------------
|
------------------------------------------------------------------------------
|
||||||
EXTENSIONS *lualine-extensions*
|
|
||||||
|
EXTENSIONS
|
||||||
|
|
||||||
Lualine extensions change statusline appearance for a window/buffer with
|
Lualine extensions change statusline appearance for a window/buffer with
|
||||||
specified filetypes.
|
specified filetypes.
|
||||||
|
|
||||||
By default no extension are loaded to improve performance.
|
By default no extension are loaded to improve performance. You can load
|
||||||
You can load extensions with:
|
extensions with:
|
||||||
|
|
||||||
>
|
>
|
||||||
extensions = {'quickfix'}
|
extensions = {'quickfix'}
|
||||||
<
|
<
|
||||||
Available extensions~
|
|
||||||
* |chadtree|
|
|
||||||
* |fugitive|
|
|
||||||
* |fzf|
|
|
||||||
* |nerdtree|
|
|
||||||
* |nvim-tree|
|
|
||||||
* |quickfix|
|
|
||||||
*
|
|
||||||
|
|
||||||
Custom extensions~
|
|
||||||
|
|
||||||
You can define your own extensions.
|
**Available extensions**
|
||||||
If you think an extension might be useful for others then please submit a pr.
|
|
||||||
|
|
||||||
|
- chadtree
|
||||||
|
- fugitive
|
||||||
|
- fzf
|
||||||
|
- nerdtree
|
||||||
|
- nvim-tree
|
||||||
|
- quickfix
|
||||||
|
|
||||||
|
|
||||||
|
**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'}}
|
local my_extension = {sections = {lualine_a = 'mode'}, filetypes = {'lua'}}
|
||||||
require'lualine'.setup {extensions = {my_extension}}
|
require'lualine'.setup {extensions = {my_extension}}
|
||||||
|
<
|
||||||
|
|
||||||
|
|
||||||
------------------------------------------------------------------------------
|
------------------------------------------------------------------------------
|
||||||
DISABLING LUALINE *lualine-disable*
|
|
||||||
|
DISABLING LUALINE
|
||||||
|
|
||||||
You can disable lualine for specific filetypes
|
You can disable lualine for specific filetypes
|
||||||
|
|
||||||
`options = {disabled_filetypes = {'lua'}}`
|
>
|
||||||
------------------------------------------------------------------------------
|
options = {disabled_filetypes = {'lua'}}
|
||||||
vim:tw=80:sw=4:ts=8:et:ft=help:norl:et:
|
<
|
||||||
|
|
||||||
|
|
||||||
|
Generated by panvimdoc <https://github.com/kdheepak/panvimdoc>
|
||||||
|
|
||||||
|
vim:tw=78:ts=8:noet:ft=help:norl:
|
||||||
|
|
Loading…
Reference in New Issue