From 9eda025073c47ad7015d6a628d026ec50074047f Mon Sep 17 00:00:00 2001 From: shadmansaleh <13149513+shadmansaleh@users.noreply.github.com> Date: Fri, 3 Sep 2021 18:49:05 +0600 Subject: [PATCH] chore: fix typos --- README.md | 12 ++++++------ THEMES.md | 2 +- doc/lualine.txt | 20 ++++++++++---------- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 4104d8a..e2ded3f 100644 --- a/README.md +++ b/README.md @@ -234,7 +234,7 @@ You can use any valid lua expression as a component including * global variables * require statements ```lua -sections = {lualine_c = {"os.data('%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. @@ -263,7 +263,7 @@ Global option used locally overwrites the global, for example: ```lua 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 left_padding = 1, -- adds padding to the left of components right_padding =1, -- adds padding to the right of components @@ -283,7 +283,7 @@ sections = { lualine_a = { { 'mode', - icon = nil, -- displays icon in front of the component + icon = nil, -- displays icon in front of the component separator = nil, -- Determines what separator to use for the component. -- when a string is given it's treated as component_separator. -- When a table is given it's treated as section_separator. @@ -347,8 +347,8 @@ 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 + file_status = true, -- displays file status (readonly status, modified status) + path = 0, -- 0 = just filename, 1 = relative path, 2 = absolute path shorting_target = 40 -- Shortens path to leave 40 space in the window -- for other components. Terrible name any suggestions? } @@ -385,7 +385,7 @@ sections = { symbols = {added = '+', modified = '~', removed = '-'} -- changes diff symbols 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 } + -- {added = add_count, modified = modified_count, removed = removed_count } -- Or nil on failure. Count <= 0 won't be displayed. } } diff --git a/THEMES.md b/THEMES.md index c8949f9..d933bf1 100644 --- a/THEMES.md +++ b/THEMES.md @@ -5,7 +5,7 @@ All available themes are only best effort ports by myself/ other users. If you f ### auto auto is a special theme. It will automaticaly load theme for your colorscheme. If there's no theme available for your colorscheme then -it'll it's best to generate one. +it'll try it's best to generate one. ### 16color
diff --git a/doc/lualine.txt b/doc/lualine.txt index 22b07ac..04344ae 100644 --- a/doc/lualine.txt +++ b/doc/lualine.txt @@ -169,7 +169,7 @@ You can use any valid lua expression as a component including * global variables * require statements > - sections = {lualine_c = {"os.data('%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. @@ -199,12 +199,12 @@ Global options~ > 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 + 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~ @@ -273,8 +273,8 @@ Component specific local options~ lualine_a = { { 'filename', - file_status = true, -- displays file status (readonly status, modified status) - path = 0 -- 0 = just filename, 1 = relative path, 2 = absolute path + file_status = true, -- displays file status (readonly status, modified status) + path = 0 -- 0 = just filename, 1 = relative path, 2 = absolute path shorting_target = 40 -- Shortens path to leave 40 space in the window -- for other components. Terrible name any suggestions? } @@ -308,7 +308,7 @@ Component specific local options~ symbols = {added = '+', modified = '~', removed = '-'} -- changes diff symbols 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 } + -- {added = add_count, modified = modified_count, removed = removed_count } -- Or nil on failure. Count <= 0 won't be displayed. } }