change theme for nightfox
This commit is contained in:
parent
ee0d3bfdfa
commit
d851043020
38
init.lua
38
init.lua
|
@ -1081,7 +1081,25 @@ require('lazy').setup({
|
||||||
{ '<leader>lg', '<cmd>LazyGit<cr>', desc = 'LazyGit' },
|
{ '<leader>lg', '<cmd>LazyGit<cr>', desc = 'LazyGit' },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
'EdenEast/nightfox.nvim',
|
||||||
|
lazy = false,
|
||||||
|
priority = 1000,
|
||||||
|
init = function()
|
||||||
|
vim.cmd 'colorscheme duskfox'
|
||||||
|
end,
|
||||||
|
config = function()
|
||||||
|
require('nightfox').setup {
|
||||||
|
options = {
|
||||||
|
styles = {
|
||||||
|
comments = 'italic',
|
||||||
|
keywords = 'bold',
|
||||||
|
types = 'italic,bold',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
end,
|
||||||
|
},
|
||||||
-- { -- You can easily change to a different colorscheme.
|
-- { -- You can easily change to a different colorscheme.
|
||||||
-- -- Change the name of the colorscheme plugin below, and then
|
-- -- Change the name of the colorscheme plugin below, and then
|
||||||
-- -- change the command in the config to whatever the name of that colorscheme is.
|
-- -- change the command in the config to whatever the name of that colorscheme is.
|
||||||
|
@ -1099,15 +1117,15 @@ require('lazy').setup({
|
||||||
-- vim.cmd.hi 'Comment gui=none'
|
-- vim.cmd.hi 'Comment gui=none'
|
||||||
-- end,
|
-- end,
|
||||||
-- },
|
-- },
|
||||||
{
|
-- {
|
||||||
'baliestri/aura-theme',
|
-- 'baliestri/aura-theme',
|
||||||
lazy = false,
|
-- lazy = false,
|
||||||
priority = 1000,
|
-- priority = 1000,
|
||||||
config = function(plugin)
|
-- config = function(plugin)
|
||||||
vim.opt.rtp:append(plugin.dir .. '/packages/neovim')
|
-- vim.opt.rtp:append(plugin.dir .. '/packages/neovim')
|
||||||
vim.cmd [[colorscheme aura-dark]]
|
-- vim.cmd [[colorscheme aura-dark]]
|
||||||
end,
|
-- end,
|
||||||
},
|
-- },
|
||||||
-- {
|
-- {
|
||||||
-- 'maxmx03/fluoromachine.nvim',
|
-- 'maxmx03/fluoromachine.nvim',
|
||||||
-- lazy = false,
|
-- lazy = false,
|
||||||
|
|
Loading…
Reference in New Issue