| @ -1,34 +1,45 @@ | |||
| return { | |||
| "rebelot/kanagawa.nvim", | |||
| priority = 1000, | |||
| config = function() | |||
| -- Default options: | |||
| require("kanagawa").setup({ | |||
| compile = false, -- enable compiling the colorscheme | |||
| undercurl = true, -- enable undercurls | |||
| commentStyle = { italic = true }, | |||
| functionStyle = {}, | |||
| keywordStyle = { italic = true }, | |||
| statementStyle = { bold = true }, | |||
| typeStyle = {}, | |||
| transparent = false, -- do not set background color | |||
| dimInactive = false, -- dim inactive window `:h hl-NormalNC` | |||
| terminalColors = true, -- define vim.g.terminal_color_{0,17} | |||
| colors = { -- add/modify theme and palette colors | |||
| palette = {}, | |||
| theme = { wave = {}, lotus = {}, dragon = {}, all = {} }, | |||
| }, | |||
| overrides = function(colors) -- add/modify highlights | |||
| return {} | |||
| end, | |||
| theme = "wave", -- Load "wave" theme when 'background' option is not set | |||
| background = { -- map the value of 'background' option to a theme | |||
| dark = "wave", -- try "dragon" ! | |||
| light = "lotus", | |||
| }, | |||
| }) | |||
| { | |||
| "rebelot/kanagawa.nvim", | |||
| enabled = false, | |||
| priority = 1000, | |||
| config = function() | |||
| -- Default options: | |||
| require("kanagawa").setup({ | |||
| compile = false, -- enable compiling the colorscheme | |||
| undercurl = true, -- enable undercurls | |||
| commentStyle = { italic = true }, | |||
| functionStyle = {}, | |||
| keywordStyle = { italic = true }, | |||
| statementStyle = { bold = true }, | |||
| typeStyle = {}, | |||
| transparent = false, -- do not set background color | |||
| dimInactive = false, -- dim inactive window `:h hl-NormalNC` | |||
| terminalColors = true, -- define vim.g.terminal_color_{0,17} | |||
| colors = { -- add/modify theme and palette colors | |||
| palette = {}, | |||
| theme = { wave = {}, lotus = {}, dragon = {}, all = {} }, | |||
| }, | |||
| overrides = function(colors) -- add/modify highlights | |||
| return {} | |||
| end, | |||
| theme = "wave", -- Load "wave" theme when 'background' option is not set | |||
| background = { -- map the value of 'background' option to a theme | |||
| dark = "wave", -- try "dragon" ! | |||
| light = "lotus", | |||
| }, | |||
| }) | |||
| -- setup must be called before loading | |||
| require("kanagawa").load("wave") | |||
| end, | |||
| -- setup must be called before loading | |||
| require("kanagawa").load("wave") | |||
| end, | |||
| }, | |||
| { | |||
| "scottmckendry/cyberdream.nvim", | |||
| lazy = false, | |||
| priority = 1000, | |||
| config = function() | |||
| vim.cmd("colorscheme cyberdream") | |||
| end | |||
| }, | |||
| } | |||