You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

28 lines
646 B

-- return {
-- "bluz71/vim-nightfly-colors",
-- name = "nightfly",
-- lazy = false,
-- priority = 1000,
-- config = function ()
-- vim.cmd([[ colorscheme nightfly ]])
-- end
-- }
return {
"EdenEast/nightfox.nvim",
name = "nightfox",
lazy = false,
priority = 1000,
config = function ()
require('nightfox').setup({
options = {
styles = {
comments = "italic",
keywords = "bold",
types = "italic,bold",
}
}
})
vim.cmd([[ colorscheme carbonfox ]])
end
}