• gfdh-57tk
    link
    fedilink
    41 year ago

    Beautiful neovim, whats the terminal program on the down right?

    • BankensteinOP
      link
      fedilink
      61 year ago

      Finally someone asked about that!

      That’s an alias I made (with some help from the Arch Wiki) that lets me search the AUR for a package using fzf and then install it.

      alias get="paru -Slq | fzf --preview 'paru -Si {}' --layout=reverse --bind 'enter:execute(paru -S {})+accept'"

      (replace paru with your AUR helper of choice if different, requires fzf)

      Also, my neovim config is available in the link!

      • @hyperreal
        link
        21 year ago

        I love how you basically made a TUI by combining existing tools. Doing something useful without reinventing the wheel.