summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlistout <listout@protonmail.com>2022-12-31 20:39:30 +0530
committerlistout <listout@protonmail.com>2022-12-31 20:39:30 +0530
commitabcf5ef29611051bf4ea663035bc784526ff0369 (patch)
tree263ab46b4012ac04c9edf5839df656bd3b5c7d34
parent1bcdf53cba6ba78c6de39971b0c9d8feeeb98df4 (diff)
nvim: colorscheme: using kanagawa colorscheme
Signed-off-by: listout <listout@protonmail.com>
-rw-r--r--lua/core/colorscheme.lua62
1 files changed, 19 insertions, 43 deletions
diff --git a/lua/core/colorscheme.lua b/lua/core/colorscheme.lua
index ff648dd..80d6f1a 100644
--- a/lua/core/colorscheme.lua
+++ b/lua/core/colorscheme.lua
@@ -1,44 +1,20 @@
--- Config in lua
-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,
- treesitter = true,
- notify = false,
- mini = false,
- -- For more plugins integrations please scroll down (https://github.com/catppuccin/nvim#integrations)
-},
+-- Default options:
+require('kanagawa').setup({
+ undercurl = true, -- enable undercurls
+ commentStyle = { italic = true },
+ functionStyle = {},
+ keywordStyle = { italic = true},
+ statementStyle = { bold = true },
+ typeStyle = {},
+ variablebuiltinStyle = { italic = true},
+ specialReturn = true, -- special highlight for the return keyword
+ specialException = true, -- special highlight for exception handling keywords
+ transparent = false, -- do not set background color
+ dimInactive = false, -- dim inactive window `:h hl-NormalNC`
+ globalStatus = false, -- adjust window separators highlight for laststatus=3
+ terminalColors = true, -- define vim.g.terminal_color_{0,17}
+ colors = {},
+ overrides = {},
+ theme = "default" -- Load "default" theme or the experimental "light" theme
})
-vim.cmd[[colorscheme catppuccin]]
+vim.cmd[[colorscheme kanagawa]]