blob: a531238845fc4fe04f33264bdbb5b0bab59dfa05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
-- Buffer-local settings for SiSU spine markup.
vim.bo.commentstring = "%% %s"
vim.bo.comments = ":%"
-- Soft wrap suits prose.
vim.wo.wrap = true
vim.wo.linebreak = true
-- Conceal inline-formatting delimiters when the user opts in
-- (`:set conceallevel=2`). See queries/sisu/highlights.scm for
-- @conceal captures.
vim.wo.conceallevel = vim.wo.conceallevel
|