added tokyonight as theme
This commit is contained in:
parent
dc09d3bb1e
commit
3e6f29282b
9
init.lua
9
init.lua
|
@ -128,14 +128,15 @@ require('lazy').setup({
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
-- {
|
||||||
-- Theme inspired by Atom
|
-- Theme inspired by Atom
|
||||||
'navarasu/onedark.nvim',
|
-- 'navarasu/onedark.nvim',
|
||||||
-- priority = 1000,
|
-- priority = 1000,
|
||||||
-- config = function()
|
-- config = function()
|
||||||
-- vim.cmd.colorscheme 'onedark'
|
-- vim.cmd.colorscheme 'onedark'
|
||||||
-- end,
|
-- end,
|
||||||
},
|
-- },
|
||||||
|
|
||||||
|
|
||||||
{
|
{
|
||||||
-- Set lualine as statusline
|
-- Set lualine as statusline
|
||||||
|
@ -144,7 +145,7 @@ require('lazy').setup({
|
||||||
opts = {
|
opts = {
|
||||||
options = {
|
options = {
|
||||||
icons_enabled = false,
|
icons_enabled = false,
|
||||||
theme = 'onedark',
|
theme = 'tokyonight-moon',
|
||||||
component_separators = '|',
|
component_separators = '|',
|
||||||
section_separators = '',
|
section_separators = '',
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,9 +1,11 @@
|
||||||
return {
|
-- return {
|
||||||
"catppuccin/nvim",
|
-- "catppuccin/nvim",
|
||||||
name = "catppuccin",
|
-- name = "catppuccin",
|
||||||
priority = 1000,
|
-- priority = 1000,
|
||||||
config = function()
|
-- config = function()
|
||||||
vim.cmd.colorscheme 'catppuccin-macchiato'
|
-- vim.cmd.colorscheme 'catppuccin-macchiato'
|
||||||
end
|
-- end
|
||||||
}
|
-- }
|
||||||
|
--
|
||||||
|
|
||||||
|
return {}
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
return {
|
||||||
|
"folke/tokyonight.nvim",
|
||||||
|
lazy = false,
|
||||||
|
priority = 1001,
|
||||||
|
opts = {},
|
||||||
|
config = function()
|
||||||
|
vim.cmd.colorscheme 'tokyonight-moon'
|
||||||
|
end,
|
||||||
|
}
|
Loading…
Reference in New Issue