Compare commits
2 Commits
f62d11367d
...
6f5f205cca
Author | SHA1 | Date |
---|---|---|
iGor milhit | 6f5f205cca | |
iGor milhit | 6da0e99882 |
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 = {},
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
return {
|
||||
'linux-cultist/venv-selector.nvim',
|
||||
branch = 'regexp',
|
||||
dependencies = { 'neovim/nvim-lspconfig', 'nvim-telescope/telescope.nvim', 'mfussenegger/nvim-dap-python' },
|
||||
opts = {
|
||||
-- Your options go here
|
||||
|
|
Loading…
Reference in New Issue