Skip to content

Commit

Permalink
feat: Support Fidget plugin
Browse files Browse the repository at this point in the history
Fixed #202
  • Loading branch information
ful1e5 committed May 6, 2023
1 parent 2c782a3 commit 5d1b567
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `lib.deprecation` - A Deprecation library to print Deprecation Messages.
- `lib.log` - A logging library to print log Messages.
- The `config.default` module has been changed to a variable and moved inside the `config` module.
- Support [Fidget](https://github.com/j-hui/fidget.nvim) plugin highlights #202

### Issues Fix

Expand Down
1 change: 1 addition & 0 deletions lua/github-theme/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ M.module_names = {
'coc',
'dashboard',
'diagnostic',
'fidget',
'gitgutter',
'gitsigns',
'indent_blankline',
Expand Down
13 changes: 13 additions & 0 deletions lua/github-theme/group/modules/fidget.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
-- https://github.com/j-hui/fidget.nvim

local M = {}

function M.get(spec, config, opts)
-- stylua: ignore
return {
FidgetTitle = { link = "Title" },
FidgetTask = { link = "LineNr" },
}
end

return M

0 comments on commit 5d1b567

Please sign in to comment.