You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
354 B
Lua
16 lines
354 B
Lua
5 months ago
|
print("Setting up colors")
|
||
|
|
||
|
rose_pine = packer_plugins["rose-pine"]
|
||
|
if rose_pine then
|
||
|
print("Rose Pine is known")
|
||
|
if rose_pine.loaded then
|
||
|
print("Using Rose Pine colorscheme")
|
||
|
vim.cmd.colorscheme("rose-pine")
|
||
|
-- vim.cmd("colorscheme rose-pine")
|
||
|
else
|
||
|
print("Rose Pine is not loaded")
|
||
|
end
|
||
|
else
|
||
|
print("Rose Pine is not known")
|
||
|
end
|