This commit is contained in:
Dane Sabo 2025-07-29 17:46:31 -04:00
parent 3a0bd3e2ab
commit 86aaac67ba
2 changed files with 7 additions and 3 deletions

View File

@ -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

View File

@ -1,7 +1,7 @@
vim.keymap.set(
"n",
"<leader>mi",
"<M-i>The quick brown fox jumps over the lazy dog. The dog stays blissfully asleep. :)",
"<M-i><!The quick brown fox jumps over the lazy dog. The dog takes a nice nap. :)>",
{ 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,
})