remove ibl
This commit is contained in:
parent
adefa8fe76
commit
65f5845788
|
@ -78,25 +78,6 @@ return {
|
||||||
c = { require("formatter.filetypes.c").clangformat },
|
c = { require("formatter.filetypes.c").clangformat },
|
||||||
}
|
}
|
||||||
opts.filetype = vim.tbl_extend("keep", opts.filetype or {}, filetypes)
|
opts.filetype = vim.tbl_extend("keep", opts.filetype or {}, filetypes)
|
||||||
|
|
||||||
local highlight = {
|
|
||||||
"L0",
|
|
||||||
"L1",
|
|
||||||
"L2",
|
|
||||||
"L3",
|
|
||||||
}
|
|
||||||
|
|
||||||
local hooks = require("ibl.hooks")
|
|
||||||
-- create the highlight groups in the highlight setup hook, so they are reset
|
|
||||||
-- every time the colorscheme changes
|
|
||||||
hooks.register(hooks.type.HIGHLIGHT_SETUP, function()
|
|
||||||
vim.api.nvim_set_hl(0, "L0", { fg = "#cc0000" })
|
|
||||||
vim.api.nvim_set_hl(0, "L1", { fg = "#b30080" })
|
|
||||||
vim.api.nvim_set_hl(0, "L2", { fg = "#cc0000" })
|
|
||||||
vim.api.nvim_set_hl(0, "L3", { fg = "#b30080" })
|
|
||||||
end)
|
|
||||||
|
|
||||||
require("ibl").setup({ indent = { highlight = highlight } })
|
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -231,44 +231,6 @@ return {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
-----------------------------------------------------------------------------
|
|
||||||
{
|
|
||||||
'lukas-reineke/indent-blankline.nvim',
|
|
||||||
event = 'FileType',
|
|
||||||
keys = {
|
|
||||||
{ '<Leader>ue', '<cmd>IndentBlanklineToggle<CR>' },
|
|
||||||
},
|
|
||||||
main = "ibl",
|
|
||||||
opts = {
|
|
||||||
remove_blankline_trail = false,
|
|
||||||
disable_with_nolist = true,
|
|
||||||
show_foldtext = false,
|
|
||||||
char_priority = 100,
|
|
||||||
show_current_context = true,
|
|
||||||
show_current_context_start = false,
|
|
||||||
exclude = {
|
|
||||||
filetypes = {
|
|
||||||
'lspinfo',
|
|
||||||
'checkhealth',
|
|
||||||
'git',
|
|
||||||
'gitcommit',
|
|
||||||
'help',
|
|
||||||
'man',
|
|
||||||
'lazy',
|
|
||||||
'alpha',
|
|
||||||
'dashboard',
|
|
||||||
'terminal',
|
|
||||||
'TelescopePrompt',
|
|
||||||
'TelescopeResults',
|
|
||||||
'neo-tree',
|
|
||||||
'Outline',
|
|
||||||
'mason',
|
|
||||||
'Trouble',
|
|
||||||
}
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
-----------------------------------------------------------------------------
|
-----------------------------------------------------------------------------
|
||||||
{
|
{
|
||||||
'tenxsoydev/tabs-vs-spaces.nvim',
|
'tenxsoydev/tabs-vs-spaces.nvim',
|
||||||
|
|
Loading…
Reference in New Issue