summaryrefslogtreecommitdiff
path: root/lua/ben/plugins/colorscheme.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/ben/plugins/colorscheme.lua')
-rw-r--r--lua/ben/plugins/colorscheme.lua63
1 files changed, 0 insertions, 63 deletions
diff --git a/lua/ben/plugins/colorscheme.lua b/lua/ben/plugins/colorscheme.lua
index 1d8cb72..4f28054 100644
--- a/lua/ben/plugins/colorscheme.lua
+++ b/lua/ben/plugins/colorscheme.lua
@@ -33,69 +33,6 @@ return {
vim.cmd([[hi Search guifg='#810002' guibg='#738c9c']])
end,
},
- -- A multi-themed plugin
- {
- "EdenEast/nightfox.nvim",
- -- priority = 1000,
- lazy = true,
- 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",