nvim/lua/plugins/ui.lua

25 lines
530 B
Lua

return {
{
"RedsXDD/neopywal.nvim",
name = "neopywal",
opts = {},
},
{
-- 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 = {}
},
}