30 lines
689 B
Lua
30 lines
689 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 = function()
|
|
return require "config.plugins.treesitter"
|
|
end,
|
|
config = function(_, opts)
|
|
require("nvim-treesitter.configs").setup(opts)
|
|
end,
|
|
},
|
|
}
|