Change theme back into onedark from atom

pull/1479/head
Juan Magalhães 2 years ago
parent 73f52543b3
commit 96119660eb

@ -53,6 +53,16 @@ local plugins = {
opts = {}
},
{
-- Theme inspired by Atom
'navarasu/onedark.nvim',
priority = 1000,
config = function()
vim.cmd.colorscheme 'onedark'
end,
},
--[[
{
-- Theme inspired by Atom
'Mofiqul/dracula.nvim',
@ -62,6 +72,7 @@ local plugins = {
vim.cmd.colorscheme 'dracula'
end,
},
--]]
'HiPhish/rainbow-delimiters.nvim',
@ -71,7 +82,7 @@ local plugins = {
dependencies = { 'nvim-tree/nvim-web-devicons' },
opts = {
options = {
theme = 'dracula',
theme = 'onedark',
globalstatus = true,
},
sections = {

@ -13,7 +13,8 @@ return {
dependencies = { "nvim-lua/plenary.nvim" },
lazy = false,
config = function()
local colors = require('dracula').colors()
-- local colors = require('dracula').colors()
local colors = require('onedark.colors')
require('todo-comments').setup({
signs = true, -- show icons in the signs column

Loading…
Cancel
Save