Files
neovim-config/lua/plugins/core.lua
T
rootiest 17f28e16ac ️ perf(edgy)!: remove edgy plugin
Remove the edgy plugin for better compatibilty with smart-splits and mouse control. This allows split windows to behave more consistently.

BREAKING CHANGE: Much of the behavior of splits will be different after this change. Edgy provided pre-configured layouts for most common splits and we will instead be using more generic layouts. That said: resizing splits is now working correctly!
2024-08-07 08:32:52 -04:00

39 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 = {
separator_style = "slant",
},
},
},
{ -- Which-Key
"folke/which-key.nvim",
lazy = true,
opts = {
preset = "modern",
win = {
wo = {
winblend = 10,
},
},
},
},
}