27 lines
621 B
Lua
27 lines
621 B
Lua
return {
|
|
|
|
-- 'rose-pine/neovim', name = 'rose-pine',
|
|
-- config = function()
|
|
-- require('rose-pine').setup({
|
|
-- styles = {
|
|
-- transparency = true,
|
|
-- },
|
|
-- -- TODO: Ideally only certain groups would have italics disabled
|
|
-- disable_italics = true,
|
|
-- })
|
|
-- vim.cmd('colorscheme rose-pine')
|
|
-- end
|
|
|
|
'rebelot/kanagawa.nvim',
|
|
config = function()
|
|
local kanagawa = require('kanagawa')
|
|
kanagawa.setup({
|
|
commentStyle = { italic = false },
|
|
keywordStyle = { italic = false},
|
|
-- TODO: make background darker
|
|
})
|
|
kanagawa.load('dragon')
|
|
end
|
|
|
|
}
|