about summary refs log tree commit diff stats
path: root/home-manager/soispha/config/neovim/nixneovim/lua/nightfox.lua
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-08-19 21:53:09 +0200
committerSoispha <soispha@vhack.eu>2023-08-19 21:53:09 +0200
commit5e788e0eabec1073bf1861fcd1a11b31955ad840 (patch)
tree4eeb20774060443e3e67afd1d7f244b34e0bef28 /home-manager/soispha/config/neovim/nixneovim/lua/nightfox.lua
parentFix(hm/conf/neovim/plugins/lsp): Remove duplicated setup of capabilities (diff)
downloadnixos-config-5e788e0eabec1073bf1861fcd1a11b31955ad840.zip
Fix(hm/conf/neovim/nixneovim): Remove as it's replaced by nixvim
Diffstat (limited to 'home-manager/soispha/config/neovim/nixneovim/lua/nightfox.lua')
-rw-r--r--home-manager/soispha/config/neovim/nixneovim/lua/nightfox.lua53
1 files changed, 0 insertions, 53 deletions
diff --git a/home-manager/soispha/config/neovim/nixneovim/lua/nightfox.lua b/home-manager/soispha/config/neovim/nixneovim/lua/nightfox.lua
deleted file mode 100644
index 1ca4f743..00000000
--- a/home-manager/soispha/config/neovim/nixneovim/lua/nightfox.lua
+++ /dev/null
@@ -1,53 +0,0 @@
--- Default options
-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 = true,           -- Non focused panes set to alternative background
-        module_default = true,         -- Default enable value for modules
-        colorblind = {
-            enable = true,             -- Enable colorblind support
-            simulate_only = false,     -- Only show simulated colorblind colors and not diff shifted
-            severity = {
-                protan = 0.3,          -- Severity [0,1] for protan (red)
-                deutan = 0.9,          -- Severity [0,1] for deutan (green)
-                tritan = 0,            -- Severity [0,1] for tritan (blue)
-            },
-        },
-        styles = {         -- Style to be applied to different syntax groups
-            comments = "italic", -- Value is any valid attr-list value `:help attr-list`
-            conditionals = "NONE",
-            constants = "NONE",
-            functions = "bold",
-            keywords = "bold",
-            numbers = "NONE",
-            operators = "NONE",
-            strings = "NONE",
-            types = "NONE",
-            variables = "NONE",
-        },
-        inverse = { -- Inverse highlight for different types
-            match_paren = false,
-            visual = false,
-            search = false,
-        },
-        modules = { -- List of various plugins and additional options
-            diagnostic = {
-                enable = true,
-                background = false,
-            },
-            native_lsp = {
-                enable = true,
-                background = false,
-            },
-        },
-    },
-    palettes = {},
-    specs = {},
-    groups = {},
-})
-
-vim.cmd.colorscheme("duskfox");