From 9526515fdb0033c236ece7e698e282aa57636fb3 Mon Sep 17 00:00:00 2001 From: venus Date: Sun, 9 Nov 2025 00:01:28 -0600 Subject: [PATCH] neogit and themery configs --- colors/init.lua | 5 +++ lua/custom/plugins/neogit.lua | 15 ++++++++ lua/custom/plugins/themery.nvim.lua | 59 +++++++++++++++++++++++++---- 3 files changed, 71 insertions(+), 8 deletions(-) create mode 100644 colors/init.lua create mode 100644 lua/custom/plugins/neogit.lua diff --git a/colors/init.lua b/colors/init.lua new file mode 100644 index 0000000..2131be6 --- /dev/null +++ b/colors/init.lua @@ -0,0 +1,5 @@ +-- links to gh repos of colorshchemes to be included in themes + +return { + 'catppuccin/nvim', +} diff --git a/lua/custom/plugins/neogit.lua b/lua/custom/plugins/neogit.lua new file mode 100644 index 0000000..d70f5bc --- /dev/null +++ b/lua/custom/plugins/neogit.lua @@ -0,0 +1,15 @@ +-- Plugin: NeogitOrg/neogit +-- Installed via store.nvim + +return { + "NeogitOrg/neogit", + dependencies = { + "nvim-lua/plenary.nvim", -- required + "sindrets/diffview.nvim", -- optional - Diff integration + -- Only one of these is needed. + "nvim-telescope/telescope.nvim", -- optional + "ibhagwan/fzf-lua", -- optional + "nvim-mini/mini.pick", -- optional + "folke/snacks.nvim" -- optional + } +} \ No newline at end of file diff --git a/lua/custom/plugins/themery.nvim.lua b/lua/custom/plugins/themery.nvim.lua index 90cd30a..a2ed227 100644 --- a/lua/custom/plugins/themery.nvim.lua +++ b/lua/custom/plugins/themery.nvim.lua @@ -2,11 +2,54 @@ -- Installed via store.nvim return { - "zaldih/themery.nvim", - lazy = false, - config = function() - require("themery").setup( - {} - ) - end -} \ No newline at end of file + 'zaldih/themery.nvim', + lazy = false, + config = function() + require('themery').setup { + themes = { + 'zellner', + 'zaibatsu', + 'wildcharm', + 'vim', + 'unokai', + 'torte', + 'tokyonight-storm', + 'tokyonight-night', + 'tokyonight-day', + 'sorbet', + 'slate', + 'shine', + 'root-loops-old', + 'root-loops-dark', + 'root-loops', + 'ron', + 'retrobox', + 'randomhue', + 'quiet', + 'peachpuff', + 'pablo', + 'murphy', + 'morning', + 'miniwinter', + 'minisummer', + 'minispring', + 'minischeme', + 'minicyan', + 'miniautumn', + 'lunaperche', + 'koehler', + 'industry', + 'habamax', + 'evening', + 'elflord', + 'desert', + 'delek', + 'default', + 'darkblue', + 'blue', + 'tokyonight-moon', + }, + livePreview = true, + } + end, +}