dotfiles/.config/nvim/lua/plugins/theme.lua

24 lines
455 B
Lua
Raw Normal View History

2022-12-09 10:52:00 +00:00
--local colorscheme = "onedark"
require("catppuccin").setup({
flavour = "frappe", -- latte, frappe, macchiato, mocha
styles = {
comments = { "italic" },
conditionals = { "italic" },
},
integrations = {
cmp = true,
nvimtree = true,
telescope = true,
},
})
local colorscheme = "catppuccin"
2022-10-19 00:47:07 +01:00
local status_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme)
if not status_ok then
return
end