Compare commits
No commits in common. "6f5f205ccae0e5a6964480b0a0a7aa91c0d19a6a" and "f62d11367d0b0e1fc21cbf1caa95f8d70929916a" have entirely different histories.
6f5f205cca
...
f62d11367d
7
init.lua
7
init.lua
|
@ -206,9 +206,6 @@ 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"
|
||||||
|
@ -347,9 +344,7 @@ 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 = {
|
ignore_install = { "markdown" },
|
||||||
"markdown"
|
|
||||||
},
|
|
||||||
|
|
||||||
-- Required property, but empr?
|
-- Required property, but empr?
|
||||||
modules = {},
|
modules = {},
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
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
|
||||||
|
|
Loading…
Reference in New Issue