neogit and themery configs
This commit is contained in:
5
colors/init.lua
Normal file
5
colors/init.lua
Normal file
@@ -0,0 +1,5 @@
|
||||
-- links to gh repos of colorshchemes to be included in themes
|
||||
|
||||
return {
|
||||
'catppuccin/nvim',
|
||||
}
|
||||
15
lua/custom/plugins/neogit.lua
Normal file
15
lua/custom/plugins/neogit.lua
Normal 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
|
||||
}
|
||||
}
|
||||
@@ -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,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user