diff --git a/nvim/lua/settings/lazy/plugins/tokyonight.lua b/nvim/lua/settings/lazy/plugins/tokyonight.lua index b10142d..ab478b3 100644 --- a/nvim/lua/settings/lazy/plugins/tokyonight.lua +++ b/nvim/lua/settings/lazy/plugins/tokyonight.lua @@ -1,14 +1,16 @@ return { - "folke/tokyonight.nvim", - lazy = false, - priority = 1000, - init = function() - vim.cmd([[colorscheme tokyonight]]) - end, - opts = { - style = "storm", - light_style = "day", - transparent = false, - terminal_colors = true, + { + "folke/tokyonight.nvim", + lazy = false, + priority = 1000, + init = function() + vim.cmd.colorscheme("tokyonight") + end, + opts = { + style = "storm", + transparent = false, + light_style = "day", + terminal_colors = true, + }, }, }