neogit and themery configs

This commit is contained in:
venus
2025-11-09 00:01:28 -06:00
parent 40567a1f4c
commit 9526515fdb
3 changed files with 71 additions and 8 deletions

5
colors/init.lua Normal file
View File

@@ -0,0 +1,5 @@
-- links to gh repos of colorshchemes to be included in themes
return {
'catppuccin/nvim',
}

View File

@@ -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
}
}

View File

@@ -2,11 +2,54 @@
-- Installed via store.nvim
return {
"zaldih/themery.nvim",
lazy = false,
config = function()
require("themery").setup(
{}
)
end
}
'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,
}