diff --git a/lua/custom/chadrc.lua b/lua/custom/chadrc.lua index d523238..92ee71e 100644 --- a/lua/custom/chadrc.lua +++ b/lua/custom/chadrc.lua @@ -7,8 +7,8 @@ M.ui = { hl_add = {}, hl_override = {}, changed_themes = {}, - theme_toggle = { "nightfox", "one_light" }, - theme = "nightfox", -- default theme + theme_toggle = { "ayu_light", "one_light" }, + theme = "ayu_light", -- default theme transparency = false, lsp_semantic_tokens = false, -- needs nvim v0.9, just adds highlight groups for lsp semantic tokens diff --git a/lua/custom/language_specific_commands/markdown.lua b/lua/custom/language_specific_commands/markdown.lua index 692e0c1..65afa8d 100644 --- a/lua/custom/language_specific_commands/markdown.lua +++ b/lua/custom/language_specific_commands/markdown.lua @@ -1,7 +1,7 @@ vim.keymap.set( "n", "mi", - "The quick brown fox jumps over the lazy dog. The dog stays blissfully asleep. :)", + "", { desc = "Print a standard 80 character string for Markdown formatting." } ) -- Create an autocommand for markdown filetype using Neovim's Lua API @@ -13,6 +13,10 @@ vim.api.nvim_create_autocmd("FileType", { -- Optionally, set the spell language (e.g., US English) vim.opt_local.spelllang = "en_us" -- You can add additional buffer-local settings here if needed + -- Set the conceal level to 2 to render links in a pretty way + vim.wo.conceallevel = 2 + -- and set it to conceal in normal and command modes + vim.wo.concealcursor = "nc" end, })