Change theme back into onedark from atom
This commit is contained in:
parent
73f52543b3
commit
96119660eb
|
@ -53,6 +53,16 @@ local plugins = {
|
||||||
opts = {}
|
opts = {}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
-- Theme inspired by Atom
|
||||||
|
'navarasu/onedark.nvim',
|
||||||
|
priority = 1000,
|
||||||
|
config = function()
|
||||||
|
vim.cmd.colorscheme 'onedark'
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
|
||||||
|
--[[
|
||||||
{
|
{
|
||||||
-- Theme inspired by Atom
|
-- Theme inspired by Atom
|
||||||
'Mofiqul/dracula.nvim',
|
'Mofiqul/dracula.nvim',
|
||||||
|
@ -62,6 +72,7 @@ local plugins = {
|
||||||
vim.cmd.colorscheme 'dracula'
|
vim.cmd.colorscheme 'dracula'
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
--]]
|
||||||
|
|
||||||
'HiPhish/rainbow-delimiters.nvim',
|
'HiPhish/rainbow-delimiters.nvim',
|
||||||
|
|
||||||
|
@ -71,7 +82,7 @@ local plugins = {
|
||||||
dependencies = { 'nvim-tree/nvim-web-devicons' },
|
dependencies = { 'nvim-tree/nvim-web-devicons' },
|
||||||
opts = {
|
opts = {
|
||||||
options = {
|
options = {
|
||||||
theme = 'dracula',
|
theme = 'onedark',
|
||||||
globalstatus = true,
|
globalstatus = true,
|
||||||
},
|
},
|
||||||
sections = {
|
sections = {
|
||||||
|
|
|
@ -13,7 +13,8 @@ return {
|
||||||
dependencies = { "nvim-lua/plenary.nvim" },
|
dependencies = { "nvim-lua/plenary.nvim" },
|
||||||
lazy = false,
|
lazy = false,
|
||||||
config = function()
|
config = function()
|
||||||
local colors = require('dracula').colors()
|
-- local colors = require('dracula').colors()
|
||||||
|
local colors = require('onedark.colors')
|
||||||
|
|
||||||
require('todo-comments').setup({
|
require('todo-comments').setup({
|
||||||
signs = true, -- show icons in the signs column
|
signs = true, -- show icons in the signs column
|
||||||
|
|
Loading…
Reference in New Issue