my neovim configuration
1local b = { 2 tl = "", -- top left 3 tr = "", -- top right 4 5 bl = "", -- bottom left 6 br = "", -- bottom right 7 8 v = "", -- vertical 9 h = "", -- horizontal 10 11 s = "", -- scroll 12} 13 14return { 15 style = "single", 16 bqf = { b.v, b.v, b.h, b.h, b.tl, b.tr, b.bl, b.br, b.s }, 17 telescope = { b.h, b.v, b.h, b.v, b.tl, b.tr, b.br, b.bl }, 18}