diff --git a/init.lua b/init.lua index 5063228d..af90c372 100644 --- a/init.lua +++ b/init.lua @@ -794,10 +794,10 @@ require('lazy').setup({ -- Load the colorscheme here. -- Like many other themes, this one has different styles, and you could load -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. - --[[ vim.cmd.colorscheme 'tokyonight-storm' ]] + vim.cmd.colorscheme 'tokyonight-night' -- You can configure highlights by doing something like: - --[[ vim.cmd.hi 'Comment gui=none' ]] + vim.cmd.hi 'Comment gui=none' end, }, diff --git a/lua/custom/plugins/themes.lua b/lua/custom/plugins/themes.lua index a89f4ffe..e85a46db 100644 --- a/lua/custom/plugins/themes.lua +++ b/lua/custom/plugins/themes.lua @@ -4,8 +4,8 @@ return { name = 'catppuccin', priority = 1000, init = function() - --[[ vim.cmd.colorscheme 'catppuccin-mocha' ]] - --[[ vim.cmd.hi 'Comment gui=none' ]] + -- vim.cmd.colorscheme 'catppuccin-mocha' + -- vim.cmd.hi 'Comment gui=none' end, }, { @@ -13,8 +13,8 @@ return { name = 'kanagawa', priority = 1000, init = function() - vim.cmd.colorscheme 'kanagawa' - vim.cmd.hi 'Comment gui=none' + -- vim.cmd.colorscheme 'kanagawa' + -- vim.cmd.hi 'Comment gui=none' end, }, {