From c359b223359f1bec6cc5def2401ea1e1f8299a39 Mon Sep 17 00:00:00 2001 From: Michael Chris Lopez Date: Tue, 31 Aug 2021 10:05:30 +0800 Subject: [PATCH] cleanup --- README.md | 2 +- lua/zenbones/init.lua | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f54f52a..756a299 100644 --- a/README.md +++ b/README.md @@ -109,7 +109,7 @@ plugins. - [CoC](https://github.com/neoclide/coc.nvim) - [Neogit](https://github.com/TimUntersberger/neogit) -## Advance Usage +## Advanced Usage Zenbones is pretty extensible thanks to [Lush](https://github.com/rktjmp/lush.nvim). You can easily retrieve the colors diff --git a/lua/zenbones/init.lua b/lua/zenbones/init.lua index ed6170f..6863860 100644 --- a/lua/zenbones/init.lua +++ b/lua/zenbones/init.lua @@ -47,7 +47,7 @@ return lush(function() Conceal { fg = c.stone.li(20), gui = "bold,italic" }, -- placeholder characters substituted for concealed text (see 'conceallevel') Cursor { bg = c.stone, fg = c.sand.li(20) }, -- character under the cursor - lCursor { Cursor, bg = Cursor.bg.lighten(20) }, -- the character under the cursor when |language-mapping| is used (see 'guicursor') + lCursor { Cursor, bg = Cursor.bg.li(20) }, -- the character under the cursor when |language-mapping| is used (see 'guicursor') -- CursorIM { }, -- like Cursor, but used when in IME mode |CursorIM| TermCursor { Cursor }, -- cursor in a focused terminal TermCursorNC { lCursor }, -- cursor in an unfocused terminal @@ -80,7 +80,7 @@ return lush(function() PmenuSbar { bg = Normal.bg.da(28) }, -- Popup menu: scrollbar. PmenuThumb { bg = Normal.bg.li(58) }, -- Popup menu: Thumb of the scrollbar. - Search { bg = c.blossom.de(10).lighten(54), fg = c.stone }, -- Last search pattern highlighting (see 'hlsearch'). Also used for similar items that need to stand out. + Search { bg = c.blossom.de(10).li(54), fg = c.stone }, -- Last search pattern highlighting (see 'hlsearch'). Also used for similar items that need to stand out. IncSearch { bg = c.blossom, fg = c.sand, gui = "bold" }, -- 'incsearch' highlighting; also used for the text replaced with ":s///c" -- Substitute { }, -- |:substitute| replacement text highlighting MatchParen { Search }, -- The character under the cursor or just before it, if it is a paired bracket, and its match. |pi_paren.txt|