I just installed the neovim, lazy and catppuccin theme
After I close and reopen all the turned blueturned-blue
Neovim version
NVIM v0.9.5
Build type: Release
LuaJIT 2.1.1703358377
system vimrc file: "$VIM/sysinit.vim"
fall-back for $VIM: "/opt/homebrew/Cellar/neovim/0.9.5/share/nvim"
Run :checkhealth for more info
Terminal and multiplexer
macos zsh
Catppuccin version / branch / rev
1.6.0
Steps to reproduce
I just installed the neovim, lazy and catppuccin them.
After I close and reopen all the turned blueturned-blue
Expected behavior
It should load the theme
Actual behavior
All turned blue
Repro
vim.cmd("set expandtab")
vim.cmd("set tabstop=2")
vim.cmd("set softtabstop=2")
vim.cmd("set shiftwidth=2")
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({
"git",
"clone",
"--filter=blob:none",
"https://github.com/folke/lazy.nvim.git",
"--branch=stable", -- latest stable release
lazypath,
})
end
vim.opt.rtp:prepend(lazypath)
local plugins = {
{ "catppuccin/nvim", name = "catppuccin", priority = 1000 }
}
local opts = {}
require("lazy").setup(plugins, opts)
vim.cmd.colorscheme "catppuccin"
Description
I just installed the neovim, lazy and catppuccin theme After I close and reopen all the turned blueturned-blue
Neovim version
Terminal and multiplexer
macos zsh
Catppuccin version / branch / rev
1.6.0
Steps to reproduce
I just installed the neovim, lazy and catppuccin them. After I close and reopen all the turned blueturned-blue
Expected behavior
It should load the theme
Actual behavior
All turned blue
Repro