diff --git a/init.lua b/init.lua index 0f7a4f8..7f9ec57 100644 --- a/init.lua +++ b/init.lua @@ -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 = {},