From e7bf9eb74549bea2cb44efc91731d32ba404d368 Mon Sep 17 00:00:00 2001 From: Marcus Ho Date: Thu, 13 Mar 2025 12:13:34 +0800 Subject: [PATCH] Increase timeout of conform plugin --- init.lua | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/init.lua b/init.lua index a2cace26..d601f4bf 100644 --- a/init.lua +++ b/init.lua @@ -934,17 +934,17 @@ require('lazy').setup({ priority = 1000, -- Make sure to load this before all the other start plugins. config = function() ---@diagnostic disable-next-line: missing-fields - require('tokyonight').setup { - styles = { - comments = { italic = false }, -- Disable italics in comments - }, - } + -- require('tokyonight').setup { + -- styles = { + -- comments = { italic = false }, -- Disable italics in comments + -- }, + -- } -- 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-night' - vim.cmd.colorscheme 'catppuccin-mocha' + vim.cmd.colorscheme = 'catppuccin-mocha' -- You can configure highlights by doing something like: vim.cmd.hi 'Comment gui=none'