mirror of
https://codeberg.org/andyscott/dotfiles.git
synced 2024-11-08 13:30:47 -05:00
37 lines
729 B
Lua
37 lines
729 B
Lua
return {
|
|
{
|
|
"folke/which-key.nvim",
|
|
config = true,
|
|
},
|
|
{
|
|
"windwp/nvim-autopairs",
|
|
config = true,
|
|
lazy = true,
|
|
event = { "BufReadPost", "BufNewFile" }
|
|
},
|
|
{
|
|
"nvim-treesitter/nvim-treesitter",
|
|
lazy = true,
|
|
build = ":TSUpdate",
|
|
event = { "BufReadPost", "BufNewFile" },
|
|
},
|
|
{
|
|
"nvim-lualine/lualine.nvim",
|
|
config = true,
|
|
dependencies = { 'nvim-tree/nvim-web-devicons' }
|
|
},
|
|
{
|
|
"neanias/everforest-nvim",
|
|
version = false,
|
|
priority = 1000,
|
|
config = function()
|
|
require("everforest").setup({
|
|
background = "soft",
|
|
transparent_background_level = 0,
|
|
italics = false,
|
|
disable_italic_comments = false,
|
|
})
|
|
end,
|
|
},
|
|
}
|
|
|