Files
neovim-config/lua/plugins/core.lua
T
rootiest 816eca31b7 fix!: move all lazyvim extras into a single file
This is a necessary change to ensure they are loaded before any other
plugins.
Prevents a warning message at startup.
2025-02-08 20:28:57 -05:00

20 lines
885 B
Lua

--- @module "plugins.core"
--- This module defines the core plugins spec for the Neovim configuration.
-- ╭─────────────────────────────────────────────────────────╮
-- │ Core │
-- ╰─────────────────────────────────────────────────────────╯
return {
-- require("config.rocks").plugin_spec,
{ -- 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,
},
}