summaryrefslogtreecommitdiff
path: root/lua/ben/plugins/colorscheme.lua
diff options
context:
space:
mode:
authorBenjamin Chausse <benjamin@chausse.xyz>2023-09-27 15:00:43 -0400
committerBenjamin Chausse <benjamin@chausse.xyz>2023-09-27 15:00:43 -0400
commit6c0d6109824ca782375eaf2f24211e5f6db0b271 (patch)
treeae040bc3677c1c997a9a0716d0c0053356d194aa /lua/ben/plugins/colorscheme.lua
parentd09abed80be3ad9c0fd28c2d7b16640bb22e6c72 (diff)
More changes
Diffstat (limited to 'lua/ben/plugins/colorscheme.lua')
-rw-r--r--lua/ben/plugins/colorscheme.lua64
1 files changed, 63 insertions, 1 deletions
diff --git a/lua/ben/plugins/colorscheme.lua b/lua/ben/plugins/colorscheme.lua
index 4caaa52..72f6b83 100644
--- a/lua/ben/plugins/colorscheme.lua
+++ b/lua/ben/plugins/colorscheme.lua
@@ -3,7 +3,7 @@ return {
{
"neanias/everforest-nvim",
version = false,
- priority = 1000,
+ lazy = true,
config = function()
require("everforest").setup({
background = "hard",
@@ -33,6 +33,68 @@ return {
vim.cmd([[hi Search guifg='#810002' guibg='#738c9c']])
end,
},
+ -- A multi-themed plugin
+ {
+ "EdenEast/nightfox.nvim",
+ priority = 1000,
+ config = function()
+ require("nightfox").setup({
+ options = {
+ -- Compiled file's destination location
+ compile_path = vim.fn.stdpath("cache") .. "/nightfox",
+ compile_file_suffix = "_compiled", -- Compiled file suffix
+ transparent = true, -- Disable setting background
+ terminal_colors = true, -- Set terminal colors (vim.g.terminal_color_*) used in `:terminal`
+ dim_inactive = false, -- Non focused panes set to alternative background
+ module_default = true, -- Default enable value for modules
+ colorblind = {
+ enable = false, -- Enable colorblind support
+ simulate_only = false, -- Only show simulated colorblind colors and not diff shifted
+ severity = {
+ protan = 0, -- Severity [0,1] for protan (red)
+ deutan = 0, -- Severity [0,1] for deutan (green)
+ tritan = 0, -- Severity [0,1] for tritan (blue)
+ },
+ },
+ styles = { -- Style to be applied to different syntax groups
+ -- bold
+ -- underline
+ -- undercurl curly underline
+ -- underdouble double underline
+ -- underdotted dotted underline
+ -- underdashed dashed underline
+ -- strikethrough
+ -- reverse
+ -- inverse same as reverse
+ -- italic
+ -- standout
+ -- altfont
+ -- nocombine override attributes instead of combining them
+ -- NONE no attributes used (used to reset it)
+ comments = "italic", -- Value is any valid attr-list value `:help attr-list`
+ conditionals = "NONE",
+ constants = "bold",
+ functions = "italic",
+ keywords = "NONE",
+ numbers = "NONE",
+ operators = "NONE",
+ strings = "NONE",
+ types = "NONE",
+ variables = "NONE",
+ },
+ inverse = { -- Inverse highlight for different types
+ match_paren = true,
+ visual = false,
+ search = false,
+ },
+ },
+ palettes = {},
+ specs = {},
+ groups = {},
+ })
+ vim.cmd([[colo terafox]])
+ end,
+ },
-- Backup retro colorscheme
{
"djpohly/elly.vim",