♻️ refactor(core): add scrolloff plugin, move some plugins to new core category

Add scroll-off plugin. Move "core" plugins to a new lua file
This commit is contained in:
2024-08-06 02:42:45 -04:00
parent b7f5faf961
commit 9572bdd0a8
2 changed files with 56 additions and 31 deletions
+42
View File
@@ -0,0 +1,42 @@
-- -----------------------------------------------------------------------------
-- ---------------------------------- CORE -------------------------------------
-- -----------------------------------------------------------------------------
return {
{
"LazyVim/LazyVim",
opts = {
colorscheme = "catppuccin-frappe",
news = {
lazyvim = true,
neovim = true,
},
},
},
{ -- Edgy
import = "lazyvim.plugins.extras.ui.edgy",
},
{ -- Mini-animate
import = "lazyvim.plugins.extras.ui.mini-animate",
},
{
"akinsho/bufferline.nvim",
opts = {
options = {
separator_style = "slant",
},
},
},
{ -- Which-Key
"folke/which-key.nvim",
lazy = true,
opts = {
preset = "modern",
win = {
wo = {
winblend = 10,
},
},
},
},
}