Replaced onedark colorscheme with tokyonight

This commit is contained in:
Rofelson 2023-05-20 23:10:52 +00:00
parent 4d7e4b8a1d
commit 1cd899cd59
1 changed files with 3 additions and 3 deletions

View File

@ -121,10 +121,10 @@ require('lazy').setup({
{ {
-- Theme inspired by Atom -- Theme inspired by Atom
'navarasu/onedark.nvim', 'folke/tokyonight.nvim',
priority = 1000, priority = 1000,
config = function() config = function()
vim.cmd.colorscheme 'onedark' vim.cmd.colorscheme 'tokyonight-night'
end, end,
}, },
@ -135,7 +135,7 @@ require('lazy').setup({
opts = { opts = {
options = { options = {
icons_enabled = false, icons_enabled = false,
theme = 'onedark', theme = 'tokyonight',
component_separators = '|', component_separators = '|',
section_separators = '', section_separators = '',
}, },