nvim/lua/plugins/ui.lua
2025-05-21 00:43:18 -06:00

36 lines
857 B
Lua

return {
{
"norcalli/nvim-colorizer.lua",
opts = { 'css'; 'javascript'; html = {mode = 'foreground';} },
},
{
"nvim-lualine/lualine.nvim",
dependencies = { "nvim-tree/nvim-web-devicons" },
opts = {
options = {
icons_enabled = true,
theme = 'pywal16-nvim',
component_separators = { left = "|", right = "|" },
section_separators = { left = "", right = "" },
},
}
},
{
"akinsho/bufferline.nvim",
version = "*",
dependencies = { "nvim-tree/nvim-web-devicons" },
opts = {
options = {
mode = "buffers",
diagnostics = "nvim_lsp",
offsets = {
{
filetype = "neo-tree", text = "File Explorer",
text_align = "center", separator = true
}
},
themable = false,
},
},
},
}