From 2b12e36012f46a5a3686e321d9778f22f65d1a1a Mon Sep 17 00:00:00 2001 From: thomasabishop Date: Sun, 25 Feb 2024 17:58:21 +0000 Subject: [PATCH] zk: remove Markdown formatting from Obsidian nvim plugin --- nvim/lua/thomas/core/options.lua | 2 +- nvim/lua/thomas/plugins/obsidian-nvim.lua | 15 +++++++++------ 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/nvim/lua/thomas/core/options.lua b/nvim/lua/thomas/core/options.lua index ac40eff..419aac6 100644 --- a/nvim/lua/thomas/core/options.lua +++ b/nvim/lua/thomas/core/options.lua @@ -24,5 +24,5 @@ opt.termguicolors = true opt.wrap = false opt.formatoptions = "cro" opt.backspace = "indent,eol,start" -opt.conceallevel = 2 +opt.conceallevel = 0 vim.notify = require("notify") diff --git a/nvim/lua/thomas/plugins/obsidian-nvim.lua b/nvim/lua/thomas/plugins/obsidian-nvim.lua index a8bb5ae..c5deede 100644 --- a/nvim/lua/thomas/plugins/obsidian-nvim.lua +++ b/nvim/lua/thomas/plugins/obsidian-nvim.lua @@ -13,11 +13,14 @@ obsidian_nvim.setup({ }, 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" }, - }, + enable = false, }, + -- ui = { + -- bullets = { char = "•", hl_group = "ObsidianBullet" }, + -- hl_groups = { + -- ObsidianBullet = { bold = false, fg = "#7daea3" }, + -- ObsidianRefText = { underline = true, fg = "#e78a4e" }, + -- ObsidianTag = { italic = true, fg = "#89b482" }, + -- }, + -- }, })