Files
neovim-config/lua/plugins/core.lua
T
rootiest 823e113276 🧹 refactor(data): require data modules directly
require data modules directly throughout config. No longer user
require("data") as a parent module
2024-11-08 12:39:30 -05:00

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,
},
}