tokyo night updates for a darker background
This commit is contained in:
parent
e8b0fe4b51
commit
1ea7d94bfc
1 changed files with 19 additions and 11 deletions
|
@ -1,21 +1,29 @@
|
||||||
return {
|
return {
|
||||||
{ "folke/neoconf.nvim", cmd = "Neoconf" },
|
{ "folke/neoconf.nvim", cmd = "Neoconf" },
|
||||||
{
|
|
||||||
"folke/neodev.nvim",
|
|
||||||
config = function()
|
|
||||||
require("neodev").setup()
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"folke/tokyonight.nvim",
|
"folke/tokyonight.nvim",
|
||||||
lazy = false, -- make sure we load this during startup if it is your main colorscheme
|
lazy = false, -- make sure we load this during startup if it is your main colorscheme
|
||||||
priority = 1000, -- make sure to load this before all the other start plugins
|
priority = 1000, -- make sure to load this before all the other start plugins
|
||||||
|
opts = {
|
||||||
|
style = "night",
|
||||||
|
transparent = true,
|
||||||
|
terminal_colors = true,
|
||||||
|
on_colors = function(colors)
|
||||||
|
colors.bg = "#000000"
|
||||||
|
end,
|
||||||
config = function()
|
config = function()
|
||||||
vim.g.tokyonight_style = "night"
|
vim.g.tokyonight_style = "night"
|
||||||
vim.g.tokyonight_italic_functions = true
|
vim.g.tokyonight_italic_functions = true
|
||||||
vim.o.termguicolors = true
|
vim.o.termguicolors = true
|
||||||
-- load the colorscheme here
|
-- load the colorscheme here
|
||||||
vim.cmd([[colorscheme tokyonight]])
|
vim.cmd([[colorscheme tokyonight-night]])
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"folke/neodev.nvim",
|
||||||
|
config = function()
|
||||||
|
require("neodev").setup()
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue