diff --git a/README.md b/README.md index 7a26708..1b27159 100644 --- a/README.md +++ b/README.md @@ -368,7 +368,7 @@ options = { -- at bottom of neovim instead of one for every window). -- This feature is only available in neovim 0.7 and higher. - refresh = { -- sets how often lualine should refreash it's contents (in ms) + refresh = { -- sets how often lualine should refresh it's contents (in ms) statusline = 1000, -- The refresh option sets minimum time that lualine tries tabline = 1000, -- to maintain between refresh. It's not guarantied if situation winbar = 1000 -- arises that lualine needs to refresh itself before this time @@ -459,7 +459,7 @@ sections = { -- need. E.g. tabnr if used with tabs. on_click = nil, -- takes a function that is called when component is clicked with mouse. -- the function receives several arguments - -- - number of clicks incase of multiple clicks + -- - number of clicks in case of multiple clicks -- - mouse button used (l(left)/r(right)/m(middle)/...) -- - modifiers pressed (s(shift)/c(ctrl)/a(alt)/m(meta)...) } @@ -611,7 +611,7 @@ sections = { modified = '[+]', -- Text to show when the file is modified. readonly = '[-]', -- Text to show when the file is non-modifiable or readonly. unnamed = '[No Name]', -- Text to show for unnamed buffers. - newfile = '[New]', -- Text to show for new created file before first writting + newfile = '[New]', -- Text to show for newly created file before first write } } } @@ -764,7 +764,7 @@ inactive_winbar = { ``` Just like statusline you can separately specify winbar for active and inactive windows. Any lualine component can be placed in winbar. All kinds of custom -components supported in statusline are also suported for winbar too. In general +components supported in statusline are also supported for winbar too. In general You can treat winbar as another lualine statusline that just appears on top of windows instead of at bottom. @@ -898,7 +898,7 @@ Note that you need to call this after the setup ```lua require('lualine').hide({ place = {'statusline', 'tabline', 'winbar'}, -- The segment this change applies to. - unhide = false, -- whether to reenable lualine again/ + unhide = false, -- whether to re-enable lualine again/ }) ``` The arguments show for hide above are default values.