this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[nvim] smart indent-blankline config

+3 -5
+3 -5
nvim/lua/plugins/indentblankline.lua
··· 1 1 local ok, indent = pcall(require, "indent_blankline") 2 - if not ok then 3 - vim.notify("no indent_backline") 4 - return 5 - end 2 + if not ok then return end 6 3 7 4 indent.setup { 5 + -- Hide indent-blankline if tap-width is 2 6 + char = (vim.opt.shiftwidth:get() == 4) and "│" or "", 8 7 show_current_context = true, 9 - -- show_current_context_start = true, 10 8 }