13 lines
365 B
Lua
13 lines
365 B
Lua
local config = require('config')
|
|
return {
|
|
{ -- color scheme
|
|
'folke/tokyonight.nvim',
|
|
lazy = false,
|
|
config = function()
|
|
local config = require('plugins.tokyonight.config')
|
|
require('tokyonight').setup(config)
|
|
vim.cmd('color tokyonight')
|
|
end,
|
|
enabled = not vim.tbl_contains(config.disable_builtin_plugins, 'tokyonight'),
|
|
},
|
|
}
|