Complete overview of the setup

Setup Overview

This section documents the tools, configs, and workflows behind my daily setup. It combines real dotfiles, short tutorials, and practical context so the system is not just shown, but also explained.

The topics below cover the desktop, terminal, shell, notifications, widgets, Git, and supporting tools. Documentation files can be read as rendered guides, while config files stay available as raw source.

Selected File

frg.fish

.config/fish/functions/frg.fish

function frg
    set -l rg_prefix 'rg --column --line-number --no-heading --color=always --smart-case'
    set -l result (
        fzf --ansi --disabled \
            --delimiter ':' \
            --bind "change:reload:$rg_prefix {q} || true" \
            --preview 'bat --color=always --style=numbers --highlight-line {2} {1}' \
            --preview-window 'up,60%,border-bottom,+{2}+3/3,~3' \
            --prompt 'rg> '
    )

    test -n "$result"; or return

    set -l file (string split ':' -- $result)[1]
    set -l line (string split ':' -- $result)[2]

    if set -q EDITOR
        $EDITOR +$line $file
    else
        nvim +$line $file
    end
end