39 lines
868 B
Lua
39 lines
868 B
Lua
return {
|
|
{
|
|
"nvimdev/dashboard-nvim",
|
|
event = "VimEnter",
|
|
dependencies = { "nvim-tree/nvim-web-devicons"},
|
|
config = function()
|
|
require('dashboard').setup {
|
|
require "config.plugins.dashboard"
|
|
}
|
|
end,
|
|
},
|
|
{
|
|
"RedsXDD/neopywal.nvim",
|
|
name = "neopywal",
|
|
opts = {
|
|
transparent_background = true,
|
|
terminal_colors = true,
|
|
show_end_of_buffer = false,
|
|
},
|
|
},
|
|
{
|
|
-- Lua status-bar
|
|
"nvim-lualine/lualine.nvim",
|
|
dependencies = { "nvim-tree/nvim-web-devicons" },
|
|
opts = {
|
|
options = {
|
|
icons_enabled = true,
|
|
theme = 'auto',
|
|
component_separators = { left = "|", right = "|"},
|
|
section_separators = { left = "", right = ""},
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"nvim-treesitter/nvim-treesitter",
|
|
event = { "BufReadPost", "BufNewFile" },
|
|
opts = {}
|
|
},
|
|
}
|