options: set breakindent to true

- Sets the breakindent option to true. It should allow vim-pandoc to
  handle list with hard wrap with better indentation, as I want.

Co-Authored-by: iGor milhit <igor@milhit.ch>
main
iGor milhit 2024-06-19 14:49:55 +02:00
parent 6da0e99882
commit 6f5f205cca
Signed by: igor
GPG Key ID: 692D97C3D0228A99
1 changed files with 6 additions and 1 deletions

View File

@ -206,6 +206,9 @@ vim.opt.rtp:append (vim.fn.stdpath ('data') .. '/site')
-- Set highlight on search
vim.o.hlsearch = true
-- Set breakindent in order to improve vim-pandoc handling of lists
vim.o.breakindent = true
-- Preview changes when searching and substituing
-- nosplit avoid to display the preview in a separate split
vim.o.inccommand = "nosplit"
@ -344,7 +347,9 @@ require('nvim-treesitter.configs').setup {
auto_install = false,
-- List of parsers to ignore installing
ignore_install = { "markdown" },
ignore_install = {
"markdown"
},
-- Required property, but empr?
modules = {},