Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)YU
7890yuiop @alien.top
BOT
Posts 0
Comments 5
Future of remote development
  • Or did you install Emacs on the server you SSH'd into?

    That one, I believe. Eliminating Tramp from the equation is an easy and effective way to avoid Tramp-based overheads!

    Unless your network connection is very slow or otherwise issue-prone, in which case ssh may not be responsive -- at which point Tramp offers significant advantages by only occasionally requiring network activity.

  • How to remove `$` in the fringes on terminal emacs?
  • FYI on GUI frames the indicators appear in the fringe, and can be configured like so:

    (push '(truncation nil nil) ;; no truncation indicators
          ;; '(truncation nil right-arrow) ;; right indicator only
          ;; '(truncation left-arrow nil) ;; left indicator only
          ;; '(truncation left-arrow right-arrow) ;; default
          fringe-indicator-alist)))
    

    /u/AkibAzmain has your solution for terminal frames.

    For more info:

    • C-h i g (emacs)Line Truncation
    • C-h i g (elisp)Truncation
    • C-h i g (elisp)Display Tables