Changed theme
This commit is contained in:
parent
590af61a7f
commit
2218ce9db8
28
init.lua
28
init.lua
|
|
@ -138,20 +138,26 @@ require('lazy').setup({
|
|||
},
|
||||
},
|
||||
|
||||
-- I want to be able to use this, TODO resolve
|
||||
-- {
|
||||
-- "nyoom-engineering/oxocarbon.nvim"
|
||||
-- },
|
||||
|
||||
{
|
||||
-- Theme inspired by Atom
|
||||
'navarasu/onedark.nvim',
|
||||
priority = 1000,
|
||||
config = function()
|
||||
vim.cmd.colorscheme 'onedark'
|
||||
"tiagovla/tokyodark.nvim",
|
||||
opts = {
|
||||
-- custom options here
|
||||
},
|
||||
config = function(_, opts)
|
||||
require("tokyodark").setup(opts) -- calling setup is optional
|
||||
vim.cmd [[colorscheme tokyodark]]
|
||||
end,
|
||||
},
|
||||
|
||||
-- {
|
||||
-- -- Theme inspired by Atom
|
||||
-- 'navarasu/onedark.nvim',
|
||||
-- priority = 1000,
|
||||
-- config = function()
|
||||
-- vim.cmd.colorscheme 'onedark'
|
||||
-- end,
|
||||
-- },
|
||||
|
||||
{
|
||||
-- Set lualine as statusline
|
||||
'nvim-lualine/lualine.nvim',
|
||||
|
|
@ -159,7 +165,7 @@ require('lazy').setup({
|
|||
opts = {
|
||||
options = {
|
||||
icons_enabled = false,
|
||||
theme = 'onedark',
|
||||
theme = 'tokyodark',
|
||||
component_separators = '|',
|
||||
section_separators = '',
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in New Issue