feat(yazi): install yazi file manager

This commit is contained in:
Stefan Imhoff
2024-05-24 18:23:04 +02:00
parent 9962d83bfc
commit 74985c9fe5
3 changed files with 12 additions and 1 deletions

View File

@@ -156,6 +156,8 @@ brew "zeromq"
brew "ffmpeg"
# Play, record, convert, and stream audio and video
brew "ffmpeg@6"
# Create thumbnails for your video files
brew "ffmpegthumbnailer"
# User-friendly command-line shell for UNIX-like operating systems
brew "fish"
# Command-line fuzzy finder written in Go
@@ -328,6 +330,8 @@ brew "pnpm"
brew "podman"
# Alternative to docker-compose using podman
brew "podman-compose"
# PDF rendering library (based on the xpdf-3.0 code base)
brew "poppler"
# Object-relational database system
brew "postgresql@14"
# Code formatter for JavaScript, CSS, JSON, GraphQL, Markdown, YAML
@@ -396,6 +400,8 @@ brew "tldr"
brew "tmux"
# Command-line tool for sharing terminal over the web
brew "ttyd", args: ["HEAD"]
# Command-line unarchiving tools supporting multiple formats
brew "unar"
# Maintained ctags implementation
brew "universal-ctags", args: ["HEAD"]
# URL extractor/launcher
@@ -418,6 +424,8 @@ brew "wxwidgets"
brew "xdotool"
# JavaScript package manager
brew "yarn"
# Blazing fast terminal file manager written in Rust, based on async I/O
brew "yazi"
# Download YouTube videos from the command-line
brew "youtube-dl"
# Process YAML, JSON, XML, CSV and properties documents from the CLI

View File

@@ -101,6 +101,9 @@ bind D new-window -c "#{pane_current_path}" -n " " lazydocker
# LF Terminal File Manager
bind O new-window -c "#{pane_current_path}" -n " " lf
# Yazi Terminal File Manager
bind W new-window -c "#{pane_current_path}" -n " " yazi
# Superfile Terminal File Manager
bind f new-window -c "#{pane_current_path}" -n "󰪶 " spf

View File

@@ -128,7 +128,7 @@ config.keys = {
{ key = "t", mods = "CTRL|ALT", action = wezterm.action({ SendString = "\2c" }) }, -- New window
{ key = "s", mods = "CTRL|ALT", action = wezterm.action({ SendString = "\2f" }) }, -- Superfile
{ key = "w", mods = "CTRL|ALT", action = wezterm.action({ SendString = "\2x" }) }, -- Close window
{ key = "y", mods = "CTRL|ALT", action = wezterm.action({ SendString = "\2!" }) }, -- Move pane to new window
{ key = "y", mods = "CTRL|ALT", action = wezterm.action({ SendString = "\2W" }) }, -- Move pane to new window
{ key = "z", mods = "CTRL|ALT", action = wezterm.action({ SendString = "\2z" }) }, -- Zoom into window
}