52 lines
1.3 KiB
Lua
52 lines
1.3 KiB
Lua
-- vim.cmd([[colorscheme gruvbox]])
|
|
-- local status, _ = pcall(vim.cmd, "colorscheme gruvbox")
|
|
-- if not status then
|
|
-- print("Colorscheme not found!") -- print error if colorscheme not installed
|
|
-- return
|
|
-- end
|
|
|
|
require("catppuccin").setup({
|
|
flavour = "mocha", -- latte, frappe, macchiato, mocha
|
|
background = { -- :h background
|
|
light = "latte",
|
|
dark = "mocha",
|
|
},
|
|
transparent_background = true,
|
|
term_colors = true,
|
|
dim_inactive = {
|
|
enabled = false,
|
|
shade = "dark",
|
|
percentage = 0.15,
|
|
},
|
|
no_italic = false, -- Force no italic
|
|
no_bold = false, -- Force no bold
|
|
styles = {
|
|
comments = { "italic" },
|
|
conditionals = { "italic" },
|
|
loops = {},
|
|
functions = {},
|
|
keywords = {},
|
|
strings = {},
|
|
variables = {},
|
|
numbers = {},
|
|
booleans = {},
|
|
properties = {},
|
|
types = {},
|
|
operators = {},
|
|
},
|
|
color_overrides = {},
|
|
custom_highlights = {},
|
|
integrations = {
|
|
cmp = true,
|
|
gitsigns = true,
|
|
nvimtree = true,
|
|
telescope = true,
|
|
notify = false,
|
|
mini = false,
|
|
-- For more plugins integrations please scroll down (https://github.com/catppuccin/nvim#integrations)
|
|
},
|
|
})
|
|
|
|
-- setup must be called before loading
|
|
vim.cmd.colorscheme "catppuccin"
|