mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
14 lines
410 B
Lua
14 lines
410 B
Lua
--- Rosé Pine for Obsidian(epwalsh)
|
|
--- https://github.com/epwalsh/obsidian.nvim
|
|
---
|
|
--- @usage
|
|
--- local highlights = require("rose-pine.plugins.obsidian")
|
|
--- require("obsidian").setup({ ui = {hl_groups = highlights} })
|
|
|
|
local p = require("rose-pine.palette")
|
|
|
|
return {
|
|
ObsidianBullet = { fg = p.muted },
|
|
ObsidianRefText = { underline = true, fg = p.iris },
|
|
ObsidianDone = { bold = true, fg = p.foam }
|
|
}
|