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
parent
6da0e99882
commit
6f5f205cca
7
init.lua
7
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 = {},
|
||||
|
|
Loading…
Reference in New Issue