I wanted to have a separate laptop where I only use the terminal for my use cases. At the moment I am somewhat confident using the terminal, but I think limiting myself to tty only would build my confidence even more. Any tips?

EDIT: I am already using nvim and I already have installed a minimal distro (Arch). I just need advice on how to actually run this system effectively.

    • theshyprisoner@lemmy.mlOP
      link
      fedilink
      English
      arrow-up
      3
      ·
      11 months ago

      I’ve found sc-im to be very useful, but I’m still a little new to it. Visidata is another one that seems to be a lot more powerful than sc-im.

      • Hule@lemmy.world
        link
        fedilink
        arrow-up
        2
        ·
        11 months ago

        I have used sc-im a few times, I like the simplicity and vim shortcuts.

        Thanks for mentioning visidata, I’ll install it.

    • ctr1@fl0w.cc
      cake
      link
      fedilink
      English
      arrow-up
      2
      ·
      11 months ago

      If you want to mess around with scripting instead of an editor I would recommend Awk- it works great for CSV files and is really powerful. Usually you can use -F, to separate using commas, but for full CSV support (with potential quoted commas) you need to use something like -vFPAT='[^,]*|"[^"]*"' (which isn’t POSIX compliant but works with gawk)