Skip to content
Snippets Groups Projects
Commit 93b7d037 authored by codecraft's avatar codecraft :crocodile:
Browse files

Add Catpuccin Colorscheme

parent 380d87ae
No related branches found
No related tags found
No related merge requests found
......@@ -54,3 +54,47 @@ require('onedark').setup {
}
-- vim.cmd[[colorscheme onedark]]
require("catppuccin").setup({
flavour = "mocha", -- latte, frappe, macchiato, mocha
background = { -- :h background
light = "latte",
dark = "mocha",
},
transparent_background = false,
show_end_of_buffer = false, -- show the '~' characters after the end of buffers
term_colors = false,
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)
},
})
-- vim.cmd[[colorscheme catppuccin]]
......@@ -112,6 +112,7 @@ require('packer').startup(function(use)
use 'lewis6991/gitsigns.nvim'
use 'navarasu/onedark.nvim' -- Theme inspired by Atom
use { "catppuccin/nvim", as = "catppuccin" }
use 'morhetz/gruvbox'
use 'folke/tokyonight.nvim'
use 'LunarVim/lunar.nvim'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment