zk: remove Markdown formatting from Obsidian nvim plugin

This commit is contained in:
thomasabishop 2024-02-25 17:58:21 +00:00
parent 5c188216c2
commit 2b12e36012
2 changed files with 10 additions and 7 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 = 2 opt.conceallevel = 0
vim.notify = require("notify") vim.notify = require("notify")

View file

@ -13,11 +13,14 @@ obsidian_nvim.setup({
}, },
disable_frontmatter = true, disable_frontmatter = true,
ui = { ui = {
bullets = { char = "", hl_group = "ObsidianBullet" }, enable = false,
hl_groups = {
ObsidianBullet = { bold = false, fg = "#7daea3" },
ObsidianRefText = { underline = true, fg = "#e78a4e" },
ObsidianTag = { italic = true, fg = "#89b482" },
},
}, },
-- ui = {
-- bullets = { char = "•", hl_group = "ObsidianBullet" },
-- hl_groups = {
-- ObsidianBullet = { bold = false, fg = "#7daea3" },
-- ObsidianRefText = { underline = true, fg = "#e78a4e" },
-- ObsidianTag = { italic = true, fg = "#89b482" },
-- },
-- },
}) })