Increase timeout of conform plugin

This commit is contained in:
Marcus Ho 2025-03-13 12:13:34 +08:00 committed by Marcus
parent 93a3a3dc22
commit e7bf9eb745
1 changed files with 6 additions and 6 deletions

View File

@ -934,17 +934,17 @@ require('lazy').setup({
priority = 1000, -- Make sure to load this before all the other start plugins. priority = 1000, -- Make sure to load this before all the other start plugins.
config = function() config = function()
---@diagnostic disable-next-line: missing-fields ---@diagnostic disable-next-line: missing-fields
require('tokyonight').setup { -- require('tokyonight').setup {
styles = { -- styles = {
comments = { italic = false }, -- Disable italics in comments -- comments = { italic = false }, -- Disable italics in comments
}, -- },
} -- }
-- Load the colorscheme here. -- Load the colorscheme here.
-- Like many other themes, this one has different styles, and you could load -- Like many other themes, this one has different styles, and you could load
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
-- vim.cmd.colorscheme 'tokyonight-night' -- vim.cmd.colorscheme 'tokyonight-night'
vim.cmd.colorscheme 'catppuccin-mocha' vim.cmd.colorscheme = 'catppuccin-mocha'
-- You can configure highlights by doing something like: -- You can configure highlights by doing something like:
vim.cmd.hi 'Comment gui=none' vim.cmd.hi 'Comment gui=none'