forked from amolinae06/nvim
36 lines
857 B
Lua
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,
|
|
},
|
|
},
|
|
},
|
|
}
|