config.nvim

NeoVim config
git clone git://popovic.xyz/nvim.config.git/
Log | Files | Refs

ibl.lua (218B)


      1 return {
      2   "lukas-reineke/indent-blankline.nvim",
      3   main = "ibl",
      4   event = "VeryLazy",
      5   opts = {
      6     indent = {
      7       char = "│"
      8     },
      9     scope = {
     10       show_start = false,
     11       show_end = false,
     12     },
     13   },
     14 }