Add fillchars, update icons for navbuddy to avoid clipping

This commit is contained in:
Evie Litherland-Smith 2023-05-18 10:16:40 +01:00
parent 956c6152d2
commit d7c4833432
3 changed files with 13 additions and 3 deletions

View file

@ -1,5 +1,6 @@
vim.g.mapleader = " " vim.g.mapleader = " "
vim.opt.termguicolors = true vim.opt.termguicolors = true
require "ui.fillchars"
-- bootstrap lazy.nvim -- bootstrap lazy.nvim
local lazypath = vim.fn.stdpath "data" .. "/lazy/lazy.nvim" local lazypath = vim.fn.stdpath "data" .. "/lazy/lazy.nvim"

View file

@ -18,9 +18,9 @@ return {
node_markers = { node_markers = {
enabled = true, enabled = true,
icons = { icons = {
leaf = " ", leaf = "󰅀 ",
leaf_selected = " ", leaf_selected = "󰄼 ",
branch = " ", branch = "󰅂 ",
}, },
}, },
}, },

9
lua/ui/fillchars.lua Normal file
View file

@ -0,0 +1,9 @@
vim.opt.fillchars:append {
horiz = "",
horizup = "",
horizdown = "",
vert = "",
vertleft = "",
vertright = "",
verthoriz = "",
}