Files
neovim-config/lua/plugins/core.lua
T

39 lines
1.0 KiB
Lua

-- ╭─────────────────────────────────────────────────────────╮
-- │ Core │
-- ╰─────────────────────────────────────────────────────────╯
local data = require("data")
return {
{ -- LazyVim
"LazyVim/LazyVim",
opts = {
colorscheme = "catppuccin-frappe",
news = {
lazyvim = true,
neovim = true,
},
},
},
{ -- Mini-animate
import = "lazyvim.plugins.extras.ui.mini-animate",
},
{ -- Bufferline
"akinsho/bufferline.nvim",
opts = {
options = data.types.bufferline,
},
},
{ -- Which-Key
"folke/which-key.nvim",
lazy = true,
opts = {
preset = "modern",
win = {
wo = {
winblend = 10,
},
},
},
},
}