diff options
| author | TJ DeVries <devries.timothyj@gmail.com> | 2020-09-10 12:00:29 -0400 |
|---|---|---|
| committer | TJ DeVries <devries.timothyj@gmail.com> | 2020-09-10 12:00:29 -0400 |
| commit | a9ffc188302c56a62bc7d4d3279e5b1daf718bed (patch) | |
| tree | ab4a79b24249cfd14ddd283f7db7304df548ff27 /lua/telescope/config.lua | |
| parent | fe7a7b4657fd678e3f4d1c490f2a4e006d0e8b49 (diff) | |
feat: add border and borderchars
Diffstat (limited to 'lua/telescope/config.lua')
| -rw-r--r-- | lua/telescope/config.lua | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lua/telescope/config.lua b/lua/telescope/config.lua index c42e500..192056d 100644 --- a/lua/telescope/config.lua +++ b/lua/telescope/config.lua @@ -13,8 +13,6 @@ local function first_non_null(...) end -- TODO: Add other major configuration points here. --- border --- borderchars -- selection_strategy local config = {} @@ -38,6 +36,9 @@ function config.set_defaults(defaults) set("width", 0.75) set("winblend", 0) + set("border", {}) + set("borderchars", { '─', '│', '─', '│', '╭', '╮', '╯', '╰'}) + -- Builtin configuration -- List that will be executed. |
