Tokyo Dark

This commit is contained in:
titusdmoore 2023-11-03 22:28:49 -04:00
parent 2218ce9db8
commit 78a9403435
1 changed files with 7 additions and 8 deletions

View File

@ -139,14 +139,13 @@ require('lazy').setup({
}, },
{ {
"tiagovla/tokyodark.nvim", "folke/tokyonight.nvim",
opts = { lazy = false,
-- custom options here config = function()
}, vim.cmd.colorscheme 'tokyonight-night'
config = function(_, opts)
require("tokyodark").setup(opts) -- calling setup is optional
vim.cmd [[colorscheme tokyodark]]
end, end,
priority = 1000,
opts = {},
}, },
-- { -- {
@ -165,7 +164,7 @@ require('lazy').setup({
opts = { opts = {
options = { options = {
icons_enabled = false, icons_enabled = false,
theme = 'tokyodark', theme = 'tokyonight',
component_separators = '|', component_separators = '|',
section_separators = '', section_separators = '',
}, },