style(nvim): colorscheme

This commit is contained in:
thek4n 2024-04-25 09:26:14 +03:00
parent f9aeabd084
commit 7dec95ba32

View File

@ -34,7 +34,6 @@ return {
event = "VeryLazy", event = "VeryLazy",
config = function() config = function()
require("lualine").setup({ require("lualine").setup({
theme = "tokyonight",
options = { options = {
component_separators = { left = '', right = '' }, component_separators = { left = '', right = '' },
}, },
@ -51,7 +50,7 @@ return {
return res return res
end, end,
color = { fg = 'white', gui='bold' }, color = { fg='white', gui='bold' },
padding = { left = 1, right = 0 } padding = { left = 1, right = 0 }
}, },
{ {
@ -82,11 +81,23 @@ return {
}, },
{ {
'EdenEast/nightfox.nvim', 'EdenEast/nightfox.nvim',
lazy = true, lazy = false,
priority = 1000,
build = function()
require("nightfox").compile()
end,
config = function() config = function()
local colorscheme = require("nightfox") require("nightfox").setup({
colorscheme.compile() options = {
colorscheme.setup() styles = {
strings = "italic",
comments = "italic",
constants = "bold",
}
}
})
vim.cmd.colorscheme("nightfox")
end end
}, },
{ {
@ -95,11 +106,7 @@ return {
}, },
{ {
"folke/tokyonight.nvim", "folke/tokyonight.nvim",
lazy = false, lazy = true,
priority = 1000,
config = function()
vim.cmd.colorscheme("tokyonight")
end
}, },
{ {
'xiyaowong/transparent.nvim', 'xiyaowong/transparent.nvim',