summary refs log tree commit diff
path: root/.vim/lua/internal/plugins/colorschemes.lua
diff options
context:
space:
mode:
Diffstat (limited to '.vim/lua/internal/plugins/colorschemes.lua')
-rw-r--r--.vim/lua/internal/plugins/colorschemes.lua59
1 files changed, 0 insertions, 59 deletions
diff --git a/.vim/lua/internal/plugins/colorschemes.lua b/.vim/lua/internal/plugins/colorschemes.lua
deleted file mode 100644
index e533ebb..0000000
--- a/.vim/lua/internal/plugins/colorschemes.lua
+++ /dev/null
@@ -1,59 +0,0 @@
-return {
-  {
-    enabled = false,
-    'olivercederborg/poimandres.nvim',
-    lazy = false,
-    config = function()
-      require('poimandres').setup({
-        disable_background = true,
-        -- dim_nc_background = true,
-      })
-    end,
-    -- optionally set the colorscheme within lazy config
-    -- init = function()
-    --   vim.cmd('colorscheme poimandres')
-    -- end,
-  },
-  {
-    enabled = true,
-    'https://github.com/slugbyte/lackluster.nvim',
-    lazy = true,
-    config = function()
-      local lackluster = require('lackluster')
-      lackluster.setup({
-        tweak_color = {
-          lack = '#70649a',
-          -- luster = '#ff0000',
-        },
-        tweak_syntax = {
-          comment = lackluster.color.gray6,
-        },
-        tweak_background = {
-          normal = 'none',
-        },
-        tweak_highlight = {
-          ['@markup.heading'] = {
-            fg = '#ffffff',
-          },
-          ['@comment'] = {
-            italic = true,
-          },
-        },
-        tweak_ui = {
-          enable_end_of_buffer = true,
-        },
-      })
-    end,
-    init = function()
-      vim.g.darkmode_colorscheme_dark = 'lackluster'
-    end,
-  },
-  {
-    enabled = true,
-    'https://github.com/elaijuh/acme.nvim',
-    lazy = true,
-    init = function()
-      vim.g.darkmode_colorscheme_light = 'acme'
-    end,
-  },
-}