Skip to content

Commit

Permalink
feat: Add bg to Folded highlight
Browse files Browse the repository at this point in the history
  • Loading branch information
polirritmico committed Jun 6, 2024
1 parent 46133f2 commit 58e2e28
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions doc/monokai-nightasty.nvim.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*monokai-nightasty.nvim.txt* For Neovim >= 0.9 Last change: 2024 May 21
*monokai-nightasty.nvim.txt* For Neovim >= 0.9 Last change: 2024 June 06

==============================================================================
Table of Contents *monokai-nightasty.nvim-table-of-contents*
Expand Down Expand Up @@ -263,8 +263,7 @@ You could set colors for `light` or `dark` themes using boolean logic:

Currently this extra files are generated:

- Monokai Nightasty Palettes <https://github.com/polirritmico/monokai-nightasty.nvim/tree/main/extras/palettes>
(palettes <extras/palettes>)
- Monokai Nightasty Palettes <https://github.com/polirritmico/monokai-nightasty.nvim/tree/main/extras/palettes> (palettes <extras/palettes>)
- Kitty <https://sw.kovidgoyal.net/kitty/> (kitty <extras/kitty>)
- Tmux <https://github.com/tmux/tmux/wiki> (tmux <extras/tmux>)
- Zathura <https://pwmt.org/projects/zathura/> (zathura <extras/zathura>)
Expand Down
2 changes: 1 addition & 1 deletion lua/monokai-nightasty/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function M.setup(palette)
ErrorMsg = { fg = c.white, bg = c.red }, -- error messages on the command line
FloatBorder = { fg = c.border_highlight, bg = c.bg_float },
FloatTitle = { fg = c.border_highlight, bg = c.bg_float },
Folded = { fg = c.blue, italic = true }, -- line used for closed folds
Folded = { fg = c.blue, bg = c.bg_float, italic = true }, -- line used for closed folds
FoldColumn = { fg = c.orange, bg = options.transparent and c.none or c.bg_float }, -- used when foldcolumn ~= 0
IncSearch = { fg = c.fg_search, bg = c.purple, bold = true }, -- 'IncSearch' highlighting; also used for the text replaced with ":s///c"
LineNr = { fg = c.grey_dark }, -- Line number for ":number" and ":#" commands, and when 'number' or 'relativenumber' option is set.
Expand Down

0 comments on commit 58e2e28

Please sign in to comment.