Replies: 1 comment
-
fixed. return {
-- catppuccin theme
{
"catppuccin/nvim",
version = "v1.11.0", -- the master branch changed 'get()' function,
name = "catppuccin",
-- lazy = true,
priority = 1000,
opts = {
flavour = "mocha",
transparent_background = vim.g.transparent_background,
float = {
transparent = vim.g.transparent_background, -- enable transparent floating windows
solid = false, -- use solid styling for floating windows, see |winborder|
},
},
},
{
"LazyVim/LazyVim",
opts = {
colorscheme = "catppuccin",
},
}, |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I use the latest documentation to install Lazyvim,after opening neovim, the error messages appears
Failed to run
config` for bufferline.nvim...re/nvim/lazy/LazyVim/lua/lazyvim/plugins/colorscheme.lua:61: attempt to call field 'get' (a nil value)
stacktrace:
I checked the source code and found that there is indeed no get method. After adding the get method, the error is no longer there, so is this a problem caused by the upgrade?
Beta Was this translation helpful? Give feedback.
All reactions