mirror of
https://github.com/rose-pine/neovim.git
synced 2026-06-03 15:46:57 +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 }
|
||
|
|
}
|