Files
Thomas Naderer 82fc23530d refactor: switch to catppuccin mocha across tmux and neovim
- tmux: hand-rolled catppuccin theme, three-way status bar toggle, plugin cleanup
- nvim: switch colorscheme to catppuccin-mocha, update lualine colors
- nvim: add tmuxline.vim for tmux statusline generation
- kitty: fix MesloLGS NF font typo, remove deprecated config keys

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-01 15:44:29 +01:00
..

glow.yazi

Warning

This plugin is now deprecated with the release of Piper

Plugin for Yazi to preview markdown files with glow. To install, run the below mentioned command:

ya pack -a Reledia/glow

then include it in your yazi.toml to use:

[plugin]
prepend_previewers = [
  { name = "*.md", run = "glow" },
]

Make sure you have glow installed, and can be found in PATH.

Feature

  • You can modify line wrap in main.lua, the current value is 55.
  • You can press ctrl+e to scroll up and ctrl+y to scroll down the readme file in preview panel in yazi: (add this to keymap.toml)
prepend_keymap = [
    # glow.yazi
    { on = ["<C-e>"], run = "seek 5" },
    { on = ["<C-y>"], run = "seek -5" },
]