Skip to content

Commit

Permalink
fix: barbecue and update readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
maxmx03 committed Dec 15, 2023
1 parent 424bbf7 commit 966fbff
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,14 @@ require('lualine').setup {

To use the Solarized theme showcased in the screenshot for Lualine [click here](https://github.com/maxmx03/solarized.nvim/discussions/50)

## Barbecue

```lua
require('barbecue').setup {
theme = 'solarized',
}
```

## Api

You can utilize useful functions to customize your Neovim plugins.
Expand Down
8 changes: 6 additions & 2 deletions lua/barbecue/theme/solarized.lua
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
local c = require('solarized.palette').get_colors()

local M = {
separator = { fg = c.green },
normal = {},
ellipsis = { fg = c.base0 },
separator = { link = 'Keyword' },
modified = { fg = c.warning },
dirname = { link = 'Directory' },

basename = { fg = c.base0, bold = true },
context = { fg = c.base0 },
context_file = { fg = c.base0 },
context_module = { link = '@namespace' },
context_namespace = { link = '@namespace' },
Expand Down

0 comments on commit 966fbff

Please sign in to comment.