diff --git a/lua/weeheavy/plugins/catppuccin.lua b/lua/weeheavy/plugins/catppuccin.lua new file mode 100644 index 0000000..e2833a7 --- /dev/null +++ b/lua/weeheavy/plugins/catppuccin.lua @@ -0,0 +1,58 @@ +return { + "catppuccin/nvim", + name = "catppuccin", + tag = "stable", + lazy = false, + priority = 1000, + opts = {}, + -- config = function() + -- local tokyonight = require("tokyonight") + -- local util = require("tokyonight.util") + -- tokyonight.setup({ + -- styles = { + -- comments = { italic = true }, + -- }, + -- on_colors = function(colors) + -- -- Brighten up comments a bit + -- colors.comment = "#888fac" + -- -- Better visible visual selection background color + -- colors.bg_visual = "#e82a86" + -- end, + -- on_highlights = function(hl, c) + -- -- Brighter line numbers + -- hl.LineNr = { + -- fg = util.darken(c.dark5, 0.6), + -- } + -- -- Remove borders from Telescope windows + -- local prompt = "#4e3e6c" + -- hl.TelescopeNormal = { + -- bg = c.bg_dark, + -- fg = c.fg_dark, + -- } + -- hl.TelescopeBorder = { + -- bg = c.bg_dark, + -- fg = c.bg_dark, + -- } + -- hl.TelescopePromptNormal = { + -- bg = prompt, + -- } + -- hl.TelescopePromptBorder = { + -- bg = prompt, + -- fg = prompt, + -- } + -- hl.TelescopePromptTitle = { + -- bg = prompt, + -- fg = prompt, + -- } + -- hl.TelescopePreviewTitle = { + -- bg = c.bg_dark, + -- fg = c.bg_dark, + -- } + -- hl.TelescopeResultsTitle = { + -- bg = c.bg_dark, + -- fg = c.bg_dark, + -- } + -- end, + -- }) + -- end, +} diff --git a/lua/weeheavy/plugins/kanagawa.lua b/lua/weeheavy/plugins/kanagawa.lua new file mode 100644 index 0000000..ebfd669 --- /dev/null +++ b/lua/weeheavy/plugins/kanagawa.lua @@ -0,0 +1,27 @@ +return { + "rebelot/kanagawa.nvim", + tag = "master", + lazy = false, + priority = 1000, + opts = {}, + config = function() + require("kanagawa").setup({ + colors = { + palette = { + -- change all usages of these colors + sumiInk0 = "#000000", + fujiWhite = "#FFFFFF", + }, + theme = { + all = { + ui = { + bg_gutter = "none", + --bg_visual = "#8a9a7b", + bg_visual = "#938056", + }, + }, + }, + }, + }) + end, +} diff --git a/lua/weeheavy/plugins/tokyonight.lua b/lua/weeheavy/plugins/tokyonight.lua index 18b27b8..3115f73 100644 --- a/lua/weeheavy/plugins/tokyonight.lua +++ b/lua/weeheavy/plugins/tokyonight.lua @@ -20,7 +20,7 @@ return { on_highlights = function(hl, c) -- Brighter line numbers hl.LineNr = { - fg = util.darken(c.teal, 0.6), + fg = util.darken(c.dark5, 0.6), } -- Remove borders from Telescope windows local prompt = "#4e3e6c"