More theme configuration
This commit is contained in:
parent
78a9403435
commit
9abcc60cf3
27
init.lua
27
init.lua
|
|
@ -141,21 +141,18 @@ require('lazy').setup({
|
|||
{
|
||||
"folke/tokyonight.nvim",
|
||||
lazy = false,
|
||||
config = function()
|
||||
vim.cmd.colorscheme 'tokyonight-night'
|
||||
end,
|
||||
priority = 1000,
|
||||
opts = {},
|
||||
},
|
||||
|
||||
-- {
|
||||
-- -- Theme inspired by Atom
|
||||
-- 'navarasu/onedark.nvim',
|
||||
-- priority = 1000,
|
||||
-- config = function()
|
||||
-- vim.cmd.colorscheme 'onedark'
|
||||
-- end,
|
||||
-- },
|
||||
{
|
||||
-- Theme inspired by Atom
|
||||
'navarasu/onedark.nvim',
|
||||
priority = 1000,
|
||||
config = function()
|
||||
vim.cmd.colorscheme 'onedark'
|
||||
end,
|
||||
},
|
||||
|
||||
{
|
||||
-- Set lualine as statusline
|
||||
|
|
@ -236,6 +233,14 @@ require('glow').setup({
|
|||
install_path = os.getenv("GLOW_PATH")
|
||||
})
|
||||
|
||||
-- Configure Theme
|
||||
require('tokyonight').setup({
|
||||
style = 'night',
|
||||
terminal_colors = true,
|
||||
sidebars = { 'qf', 'vista_kind', 'terminal', 'packer' },
|
||||
})
|
||||
vim.cmd.colorscheme 'tokyonight'
|
||||
|
||||
-- [[ Setting options ]]
|
||||
-- See `:help vim.o`
|
||||
-- NOTE: You can change these options as you wish!
|
||||
|
|
|
|||
Loading…
Reference in New Issue