nvim: tweak highlighting and concealment

This commit is contained in:
thomasabishop 2024-02-20 14:55:16 +00:00
parent 0aa8eba465
commit e778aed779
2 changed files with 10 additions and 1 deletions

View file

@ -24,5 +24,5 @@ opt.termguicolors = true
opt.wrap = false opt.wrap = false
opt.formatoptions = "cro" opt.formatoptions = "cro"
opt.backspace = "indent,eol,start" opt.backspace = "indent,eol,start"
opt.conceallevel = 1 opt.conceallevel = 2
vim.notify = require("notify") vim.notify = require("notify")

View file

@ -11,4 +11,13 @@ obsidian_nvim.setup({
path = "~/repos/eolas/zk", path = "~/repos/eolas/zk",
}, },
}, },
disable_frontmatter = true,
ui = {
bullets = { char = "", hl_group = "ObsidianBullet" },
hl_groups = {
ObsidianBullet = { bold = false, fg = "#7daea3" },
ObsidianRefText = { underline = true, fg = "#e78a4e" },
ObsidianTag = { italic = true, fg = "#89b482" },
},
},
}) })