Skip to content

Commit

Permalink
feat(plugin): added lazy.nvim integration
Browse files Browse the repository at this point in the history
  • Loading branch information
ficcdaf committed Jan 26, 2025
1 parent 740584b commit 35fe806
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ see [Plugin Configuration](#plugin-configuration) for more details.
| FzfLua | X |
| fzf.vim | |
| org-bullets.nvim | |
| lazy.nvim | |

## Configuration

Expand Down
22 changes: 22 additions & 0 deletions lua/ashen/plugins/lazy.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
local M = {}

M.map = {
LazySpecial = { "red_ember" },
LazyReasonEvent = { "orange_blaze" },
LazyReasonCmd = { "orange_smolder" },
LazyReasonKeys = { "orange_glow" },
LazyReasonFt = { "red_ember" },
LazyReasonImport = { "red_ember" },
LazyReasonPlugin = { "red_ember", { bold = true } },
LazyReasonRequire = { "red_glowing" },
LazyComment = { "g_5", { bold = true } },
LazyLocal = { "orange_smolder" },
LazyProgressTodo = { "orange_blaze" },
LazyProgressDone = { "g_4" },
LazyProp = { "g_4", { italic = true } },
LazyDir = { "orange_smolder" },
LazyUrl = { "red_glowing", { italic = true } },
LazyValue = { "orange_glow" },
}

return M
1 change: 0 additions & 1 deletion lua/ashen/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,6 @@ M.map = {
SpellBad = { nil, nil, { undercurl = true } },
SpellCap = { nil, nil, { undercurl = true } },
String = { "red_glowing", nil },
LazySpecial = { "red_ember" },
}

M.link = {}
Expand Down

0 comments on commit 35fe806

Please sign in to comment.