This repository has been archived on 2025-01-07. You can view files and clone it, but cannot push or open issues or pull requests.
opdavies.nvim/after/plugin/colorscheme.lua

13 lines
220 B
Lua
Raw Normal View History

2023-03-22 22:22:08 +00:00
local status_ok, catppuccin = pcall(require, "catppuccin")
if not status_ok then
return
end
2023-03-22 22:22:08 +00:00
catppuccin.setup {}
2023-03-22 22:22:08 +00:00
vim.opt.termguicolors = true
2023-03-22 22:22:08 +00:00
vim.g.catppuccin_flavour = "mocha"
2023-03-22 22:22:08 +00:00
vim.cmd([[ colorscheme catppuccin ]])