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
|
-- Set highlight on search
|
||||||
vim.o.hlsearch = true
|
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
|
-- Preview changes when searching and substituing
|
||||||
-- nosplit avoid to display the preview in a separate split
|
-- nosplit avoid to display the preview in a separate split
|
||||||
vim.o.inccommand = "nosplit"
|
vim.o.inccommand = "nosplit"
|
||||||
|
@ -344,7 +347,9 @@ require('nvim-treesitter.configs').setup {
|
||||||
auto_install = false,
|
auto_install = false,
|
||||||
|
|
||||||
-- List of parsers to ignore installing
|
-- List of parsers to ignore installing
|
||||||
ignore_install = { "markdown" },
|
ignore_install = {
|
||||||
|
"markdown"
|
||||||
|
},
|
||||||
|
|
||||||
-- Required property, but empr?
|
-- Required property, but empr?
|
||||||
modules = {},
|
modules = {},
|
||||||
|
|
Loading…
Reference in New Issue