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

37 lines
1.0 KiB
Lua

-- ╭─────────────────────────────────────────────────────────╮
-- │ Core │
-- ╰─────────────────────────────────────────────────────────╯
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 = require("data.types").bufferline,
},
},
{ -- Which-Key
"folke/which-key.nvim",
lazy = true,
opts = {
preset = "modern",
win = {
wo = {
winblend = 10,
},
},
},
},
}