fix(nvim): fix devicons padding

This commit is contained in:
winston 2023-06-23 20:02:03 +02:00
parent 863b036bef
commit 10ea13464f
Signed by: winston
GPG key ID: 3786770EDBC2B481
2 changed files with 9 additions and 59 deletions

View file

@ -11,62 +11,12 @@ if not vim.loop.fs_stat(lazypath) then
lazypath, lazypath,
}) })
end end
vim.opt.rtp:prepend(vim.env.LAZY or lazypath) vim.opt.rtp:prepend(lazypath)
M.setup = function(plugins) M.setup = function(plugins)
require("lazy").setup(plugins, { require("lazy").setup(plugins, {
install = { install = { colorscheme = { "catppuccin" } },
colorscheme = { "catppuccin" }, ui = { border = vim.g.bc.style },
},
performance = {
rtp = {
disabled_plugins = {
"2html_plugin",
"bugreport",
"compiler",
"ftplugin",
"fzf",
"getscript",
"getscriptPlugin",
"gzip",
"logipat",
"matchit",
"netrw",
"netrwFileHandlers",
"netrwPlugin",
"netrwSettings",
"optwin",
"rplugin",
"rrhelper",
"spellfile_plugin",
"synmenu",
"syntax",
"tar",
"tarPlugin",
"tutor",
"vimball",
"vimballPlugin",
"zip",
"zipPlugin",
},
},
},
ui = {
icons = {
cmd = "",
config = "",
event = "",
ft = "",
init = "",
keys = "",
plugin = "",
runtime = "",
source = "",
start = "",
task = "",
},
border = vim.g.bc.style,
},
}) })
end end