mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-17 16:21:12 +02:00
more themes
This commit is contained in:
parent
67ce1adc7f
commit
eaefbf8750
7 changed files with 52 additions and 1 deletions
1
\
1
\
|
@ -1 +0,0 @@
|
|||
return { 'i3d/vim-jimbothemes'}
|
29
colors/ivory_extended.lua
Normal file
29
colors/ivory_extended.lua
Normal file
|
@ -0,0 +1,29 @@
|
|||
vim.cmd("highlight clear")
|
||||
vim.cmd("set t_Co=256")
|
||||
vim.o.termguicolors = true
|
||||
vim.o.background = "light"
|
||||
vim.g.colors_name = "ivory_extended"
|
||||
|
||||
package.loaded["ivory"] = nil
|
||||
|
||||
local lush = require("lush")
|
||||
local extended = lush.merge({
|
||||
require("ivory"),
|
||||
require("ivory_statusline"),
|
||||
require("ivory_mini_starter"),
|
||||
require("ivory_telescope"),
|
||||
require("ivory_whichkey"),
|
||||
require("ivory_neogit"),
|
||||
require("ivory_incline"),
|
||||
require("ivory_cmp"),
|
||||
require("ivory_flash"),
|
||||
require("ivory_mason"),
|
||||
require("ivory_dressing"),
|
||||
require("ivory_null_ls"),
|
||||
require("ivory_navic"),
|
||||
require("ivory_dap"),
|
||||
require("ivory_dap_ui"),
|
||||
require("ivory_bufferline"),
|
||||
})
|
||||
|
||||
lush(extended)
|
6
lua/custom/plugins/binary.lua
Normal file
6
lua/custom/plugins/binary.lua
Normal file
|
@ -0,0 +1,6 @@
|
|||
return {
|
||||
'jackplus-xyz/binary.nvim',
|
||||
opts = {
|
||||
-- Add your configuration here
|
||||
},
|
||||
}
|
3
lua/custom/plugins/borrowed.lua
Normal file
3
lua/custom/plugins/borrowed.lua
Normal file
|
@ -0,0 +1,3 @@
|
|||
return {
|
||||
'myypo/borrowed.nvim',
|
||||
}
|
1
lua/custom/plugins/gotham.lua
Normal file
1
lua/custom/plugins/gotham.lua
Normal file
|
@ -0,0 +1 @@
|
|||
return { 'whatyouhide/vim-gotham' }
|
9
lua/custom/plugins/ivory.lua
Normal file
9
lua/custom/plugins/ivory.lua
Normal file
|
@ -0,0 +1,9 @@
|
|||
return {
|
||||
-- Colorscheme
|
||||
"mstcl/ivory",
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
dependencies = {
|
||||
"rktjmp/lush.nvim",
|
||||
},
|
||||
}
|
4
lua/custom/plugins/witchesbrew.lua
Normal file
4
lua/custom/plugins/witchesbrew.lua
Normal file
|
@ -0,0 +1,4 @@
|
|||
return {
|
||||
"shoenot/witchesbrew.nvim",
|
||||
dependencies = { 'rktjmp/lush.nvim' },
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue