Skip to content

Commit

Permalink
nvim: Fix for breaking indent-blanklines version
Browse files Browse the repository at this point in the history
  • Loading branch information
Attamusc committed Oct 24, 2023
1 parent a78be17 commit 1267752
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions dot_config/nvim/lua/atta/plugins/indent-blankline.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,9 @@ local M = {
}

function M.config()
local indent_blankline = require("indent_blankline")
local indent_blankline = require("ibl")

vim.opt.list = true

indent_blankline.setup({
space_char_blankline = " ",
show_current_context = true,
show_current_context_start = false,
show_trailing_blankline_indent = false,
buftype_exclude = { "terminal", "telescope" },
})
indent_blankline.setup()
end

return M

0 comments on commit 1267752

Please sign in to comment.