25 lines
995 B
Lua
25 lines
995 B
Lua
--- @module "plugins.core"
|
|
--- This module defines the core plugins spec for the Neovim configuration.
|
|
-- ╭─────────────────────────────────────────────────────────╮
|
|
-- │ Core │
|
|
-- ╰─────────────────────────────────────────────────────────╯
|
|
|
|
return {
|
|
-- require("config.rocks").plugin_spec,
|
|
{ -- LazyVim
|
|
'LazyVim/LazyVim',
|
|
priority = 900,
|
|
opts = require('data.types').lazyvim.opts,
|
|
},
|
|
{ -- Bufferline
|
|
'akinsho/bufferline.nvim',
|
|
cond = require('data.types').bufferline.enabled,
|
|
opts = require('data.types').bufferline.opts,
|
|
},
|
|
{ -- Which-Key
|
|
'folke/which-key.nvim',
|
|
lazy = true,
|
|
opts = require('data.types').whichkey.opts,
|
|
},
|
|
}
|