Compare commits

..

2 Commits

Author SHA1 Message Date
iGor milhit 6f5f205cca
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>
2024-06-19 14:49:55 +02:00
iGor milhit 6da0e99882
plugins: install the new version of venv-selector
Co-Authored-by: iGor milhit <igor@milhit.ch>
2024-06-19 14:09:18 +02:00
2 changed files with 7 additions and 1 deletions

View File

@ -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 = {},

View File

@ -1,5 +1,6 @@
return { return {
'linux-cultist/venv-selector.nvim', 'linux-cultist/venv-selector.nvim',
branch = 'regexp',
dependencies = { 'neovim/nvim-lspconfig', 'nvim-telescope/telescope.nvim', 'mfussenegger/nvim-dap-python' }, dependencies = { 'neovim/nvim-lspconfig', 'nvim-telescope/telescope.nvim', 'mfussenegger/nvim-dap-python' },
opts = { opts = {
-- Your options go here -- Your options go here