diff --git a/7.-Example-Custom-Plugins.md b/7.-Example-Custom-Plugins.md index b5dc83b..614976c 100644 --- a/7.-Example-Custom-Plugins.md +++ b/7.-Example-Custom-Plugins.md @@ -1676,13 +1676,17 @@ return { require("onedarkpro").setup({ colors = { -- red = "#FF0000", + bg_statusline = "#282c34", }, options = { cursorline = true, transparency = false, + terminal_colors = true, }, highlights = { -- overide cursor line fill colors + LineNr = { fg = "${fg}" }, -- Line number for ":number" and ":#" commands, and when 'number' or 'relativenumber' option is set. + CursorLineNr = { fg = "${fg}" }, -- Like LineNr when 'cursorline' or 'relativenumber' is set for the cursor line. CursorLine = { bg = "#333842" }, Cursor = { fg = "${bg}", bg = "${fg}" }, -- character under the cursor lCursor = { fg = "${bg}", bg = "${fg}" }, -- the character under the cursor when |language-mapping| is used (see 'guicursor')