Revert "attempt to fix"

This reverts commit 3d6dbc162c.
This commit is contained in:
Sakooooo 2023-08-11 12:59:52 +03:00
parent 3d6dbc162c
commit 60315a3bc1
Signed by: sako
GPG key ID: 3FD715D87D7725E0

View file

@ -1,4 +1,5 @@
-- bootstrap lazy.nvim -- bootstrap lazy.nvim
local dashboard_configuration = require "core.plugin_config.dashboard"
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then if not vim.loop.fs_stat(lazypath) then
vim.fn.system({ vim.fn.system({
@ -72,7 +73,7 @@ local plugins = {
-- startup -- startup
{ {
'glepnir/dashboard-nvim', 'glepnir/dashboard-nvim',
config = require("dashboard").setup({}), config = dashboard_configuration.get_sections(),
event = 'VimEnter', event = 'VimEnter',
dependencies = { { 'nvim-tree/nvim-web-devicons' } } dependencies = { { 'nvim-tree/nvim-web-devicons' } }
}, },