X-Git-Url: https://git.madduck.net/etc/lazyvim.git/blobdiff_plain/964aa49ff2d3dcccd7093de714deaafa779a3aa3..HEAD:/.config/lazyvim/after/ftplugin/mail.lua diff --git a/.config/lazyvim/after/ftplugin/mail.lua b/.config/lazyvim/after/ftplugin/mail.lua index 52dc767..8118cef 100644 --- a/.config/lazyvim/after/ftplugin/mail.lua +++ b/.config/lazyvim/after/ftplugin/mail.lua @@ -13,6 +13,9 @@ vim.b.autoformat = false -- disable Treesitter format expression for Mail vim.opt_local.formatexpr = "" + +-- Do not conceal anything (Markdown) in emails going out +vim.opt_local.conceallevel = 0 -- }}} -- {{{ formatting @@ -23,6 +26,12 @@ vim.opt_local.formatoptions:remove("l") -- would not break lines that were long vim.opt_local.commentstring = "> %s" -- commenting means quoting in mails -- }}} +-- {{{ options +vim.opt.number = false +vim.opt.relativenumber = false +vim.opt.signcolumn = "no" +-- }}} + -- {{{ autocmds vim.api.nvim_create_autocmd({ "BufWrite" }, { buffer = 0,