summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorlistout <listout@protonmail.com>2022-11-28 12:17:20 +0530
committerlistout <listout@protonmail.com>2022-11-28 12:17:20 +0530
commit79ab12a927af7a2d5e976ede424284b49e55abe6 (patch)
tree6eba55d92b545358223afdc44496c2fdcb13c85a /lua
parent8b0e19656ace0b0147f1f346fcec99e95d217064 (diff)
nvim: colorscheme: using catpuccin colors
Signed-off-by: listout <listout@protonmail.com>
Diffstat (limited to 'lua')
-rw-r--r--lua/core/colorscheme.lua43
1 files changed, 42 insertions, 1 deletions
diff --git a/lua/core/colorscheme.lua b/lua/core/colorscheme.lua
index ebda145..6cadd9f 100644
--- a/lua/core/colorscheme.lua
+++ b/lua/core/colorscheme.lua
@@ -1,2 +1,43 @@
-- Config in lua
-vim.cmd[[colorscheme oh-lucy]]
+require("catppuccin").setup({
+ flavour = "mocha", -- latte, frappe, macchiato, mocha
+ background = { -- :h background
+ light = "latte",
+ dark = "frappe",
+},
+transparent_background = false,
+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]]