diff --git a/repro.lua b/repro.lua index 534f3cd7..9e75529e 100644 --- a/repro.lua +++ b/repro.lua @@ -28,27 +28,29 @@ vim.g.mapleader = ' ' -- install the following plugins ---@type LazySpec local plugins = { - 'folke/tokyonight.nvim', + { 'catppuccin/nvim', name = 'catppuccin', opts = { flavour = 'macchiato' } }, { 'mikavilpas/yazi.nvim', event = 'VeryLazy', keys = { - '-', - 'Yazi', - desc = 'Open yazi at the current file', - }, - { - -- Open in the current working directory - 'cw', - 'Yazi cwd', - desc = "Open the file manager in nvim's working directory", - }, - { - -- NOTE: this requires a version of yazi that includes - -- https://github.com/sxyazi/yazi/pull/1305 from 2024-07-18 - '', - 'Yazi toggle', - desc = 'Resume the last yazi session', + { + '-', + 'Yazi', + desc = 'Open yazi at the current file', + }, + { + -- Open in the current working directory + 'cw', + 'Yazi cwd', + desc = "Open the file manager in nvim's working directory", + }, + { + -- NOTE: this requires a version of yazi that includes + -- https://github.com/sxyazi/yazi/pull/1305 from 2024-07-18 + '', + 'Yazi toggle', + desc = 'Resume the last yazi session', + }, }, ---@type YaziConfig opts = { @@ -58,7 +60,8 @@ local plugins = { } require('lazy').setup(plugins, { root = root .. '/plugins', + install = { colorscheme = { 'catppuccin' } }, }) -vim.cmd.colorscheme('tokyonight') +vim.cmd.colorscheme('catppuccin') -- add anything else here