From 65f58457886ff2a957dc5f1bcb45d1fd97becb5f Mon Sep 17 00:00:00 2001 From: PlexSheep Date: Sat, 14 Oct 2023 15:58:15 -0400 Subject: [PATCH] remove ibl --- .../plugins/extras/formatting/prettier.lua | 19 ---------- lua/plex/plugins/ui.lua | 38 ------------------- 2 files changed, 57 deletions(-) diff --git a/lua/plex/plugins/extras/formatting/prettier.lua b/lua/plex/plugins/extras/formatting/prettier.lua index 44be155..5b3871d 100644 --- a/lua/plex/plugins/extras/formatting/prettier.lua +++ b/lua/plex/plugins/extras/formatting/prettier.lua @@ -78,25 +78,6 @@ return { c = { require("formatter.filetypes.c").clangformat }, } 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, }, diff --git a/lua/plex/plugins/ui.lua b/lua/plex/plugins/ui.lua index babed7a..fdcea89 100644 --- a/lua/plex/plugins/ui.lua +++ b/lua/plex/plugins/ui.lua @@ -231,44 +231,6 @@ return { }, }, - ----------------------------------------------------------------------------- - { - 'lukas-reineke/indent-blankline.nvim', - event = 'FileType', - keys = { - { 'ue', 'IndentBlanklineToggle' }, - }, - 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',