14 lines
261 B
Lua
14 lines
261 B
Lua
---@module 'lazy'
|
|
---@type LazySpec
|
|
return {
|
|
'folke/tokyonight.nvim',
|
|
config = function()
|
|
---@diagnostic disable-next-line: missing-fields
|
|
require('tokyonight').setup {
|
|
styles = {
|
|
comments = { italic = false },
|
|
},
|
|
}
|
|
end,
|
|
}
|