▲ | skrtskrt 7 months ago | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
For those that have to bounce between Mac and Linux for work/personal reasons, I cannot recommend Kitty terminal enough. The main thing that's a big of a pain is you'll probably want to set up a scrollback pager (I use neovim as mine but vim works too) so you easily search the terminal output and copy/paste from it. I use # https://github.com/kovidgoyal/kitty/issues/719#issuecomment-... scrollback_pager nvim -u ~/.config/kitty/kitty-scrollback-pager.vimrc -c "silent write! /tmp/kitty_scrollback_buffer | te cat /tmp/kitty_scrollback_buffer -" and the scrollback pager vimrc: ``` set nonumber nolist showtabline=0 foldcolumn=0" set clipboard+=unnamedplus autocmd TermOpen * normal G map # ^ map q :qa!<CR> "silent write! /tmp/kitty_scrollback_buffer | te cat /tmp/kitty_scrollback_buffer - ``` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
▲ | dizhn 7 months ago | parent | next [-] | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
I believe wezterm has that feature already. (Like there anything it doesn't have. :) ) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
▲ | landr0id 7 months ago | parent | prev [-] | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
Wezterm is also pretty good. It’s by far my favorite “new” terminal app I’ve tried. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|