-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbefore.lua
75 lines (72 loc) · 1.47 KB
/
before.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
-- use space as leader
vim.g.mapleader = " "
vim.g.maplocalleader = " "
---@class BorderChars
---@field style string
---@field vert string
---@field vertleft string
---@field vertright string
---@field horiz string
---@field horizup string
---@field horizdown string
---@field verthoriz string
---@field topleft string
---@field topright string
---@field botleft string
---@field botright string
---@type table<string, BorderChars>
local borderchars = {
single = {
style = "single",
vert = "│",
vertleft = "┤",
vertright = "├",
horiz = "─",
horizup = "┴",
horizdown = "┬",
verthoriz = "┼",
topleft = "┌",
topright = "┐",
botleft = "└",
botright = "┘",
},
double = {
style = "double",
vert = "║",
vertleft = "╣",
vertright = "╠",
horiz = "═",
horizup = "╩",
horizdown = "╦",
verthoriz = "╬",
topleft = "╔",
topright = "╗",
botleft = "╚",
botright = "╝",
},
rounded = {
style = "rounded",
vert = "│",
vertleft = "┤",
vertright = "├",
horiz = "─",
horizup = "┴",
horizdown = "┬",
verthoriz = "┼",
topleft = "╭",
topright = "╮",
botleft = "╰",
botright = "╯",
},
}
-- my custom borderchars
vim.g.bc = borderchars.rounded
vim.opt.fillchars:append({
horiz = vim.g.bc.horiz,
horizup = vim.g.bc.horizup,
horizdown = vim.g.bc.horizdown,
vert = vim.g.bc.vert,
vertright = vim.g.bc.vertright,
vertleft = vim.g.bc.vertleft,
verthoriz = vim.g.bc.verthoriz,
})