From 96119660eb6c76c87ddff0466ca470510eb4f095 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Magalh=C3=A3es?= Date: Fri, 1 Sep 2023 15:57:01 -0300 Subject: [PATCH] Change theme back into onedark from atom --- lua/core/plugins/init.lua | 13 ++++++++++++- lua/core/plugins/todo-comments.lua | 3 ++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/lua/core/plugins/init.lua b/lua/core/plugins/init.lua index 1ac706a3..83ce3144 100644 --- a/lua/core/plugins/init.lua +++ b/lua/core/plugins/init.lua @@ -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 = { diff --git a/lua/core/plugins/todo-comments.lua b/lua/core/plugins/todo-comments.lua index 5a5e0cc5..89b5bf9c 100644 --- a/lua/core/plugins/todo-comments.lua +++ b/lua/core/plugins/todo-comments.lua @@ -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