mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
Quick fix for lazyvim bufferline error when using catppuccin (#1084)
* Quick fix for lazyvim bufferline error when using catppuccin * This is a slightly better fix * Adding the fix in theme, actually messed up the theme colors * Adding the migration file --------- Co-authored-by: David Heinemeier Hansson <david@hey.com>
This commit is contained in:
committed by
GitHub
parent
2442f774e4
commit
b6896bd58f
12
config/nvim/lua/plugins/temp-fix.lua
Normal file
12
config/nvim/lua/plugins/temp-fix.lua
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
return {
|
||||||
|
{
|
||||||
|
"akinsho/bufferline.nvim",
|
||||||
|
-- TODO: Remove this once its fixed in lazyvim. This is only a temporary fix, and its onl needed for catppuccin
|
||||||
|
init = function()
|
||||||
|
local bufline = require("catppuccin.groups.integrations.bufferline")
|
||||||
|
function bufline.get()
|
||||||
|
return bufline.get_theme()
|
||||||
|
end
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
}
|
||||||
3
migrations/1756234177.sh
Normal file
3
migrations/1756234177.sh
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
echo "Add temp-fix.lua for LazyVim Catppuccin bufferline compatibility"
|
||||||
|
|
||||||
|
omarchy-refresh-config nvim/lua/plugins/temp-fix.lua
|
||||||
Reference in New Issue
Block a user