Update nvim config
This commit is contained in:
parent
30b8d668da
commit
bf4fa0adcd
|
@ -1,8 +1,24 @@
|
|||
local status_ok, indent_blankline = pcall(require, "ibl")
|
||||
local status_ok, ibl = pcall(require, "ibl")
|
||||
if not status_ok then
|
||||
return
|
||||
end
|
||||
|
||||
ibl.update(
|
||||
{
|
||||
exclude = {
|
||||
filetypes = {
|
||||
'c',
|
||||
'cpp',
|
||||
'java',
|
||||
'json',
|
||||
'json5',
|
||||
'go',
|
||||
'rust',
|
||||
'xml',
|
||||
}
|
||||
}
|
||||
}
|
||||
)
|
||||
-- vim.g.indent_blankline_buftype_exclude = {
|
||||
-- "terminal",
|
||||
-- "nofile",
|
||||
|
|
|
@ -168,13 +168,13 @@ local plugins = {
|
|||
},
|
||||
},
|
||||
|
||||
-- {
|
||||
-- "HiPhish/rainbow-delimiters.nvim",
|
||||
-- lazy = false,
|
||||
-- dependencies = {
|
||||
-- "nvim-treesitter/nvim-treesitter",
|
||||
-- },
|
||||
-- },
|
||||
{
|
||||
"HiPhish/rainbow-delimiters.nvim",
|
||||
lazy = false,
|
||||
dependencies = {
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
},
|
||||
},
|
||||
|
||||
{
|
||||
'numToStr/Comment.nvim',
|
||||
|
|
Loading…
Reference in New Issue