12345678910111213141516171819202122232425 |
- startup_message off
- # Instead of "^A + key" for command (^A usually used to get to the
- # beginning of the line) use "^B + key"
- escape ^bB
- # Statusbar
- hardstatus on
- hardstatus alwayslastline
- hardstatus string "%{b kw}%H %{r}%1` %{w}| %{g}%c %{w}| %{-b kw}%u %-Lw%{= rW}%50> %n%f %t %{-}%+Lw%<"
- # How many lines can be scrolled back using ^A + ESC and moving the
- # cursor
- defscrollback 5000
- # Use 256 colors
- # Make sure the host terminal supports them. E.g. echo - e $TERM.
- # Add TERM=xterm-256color to .bashrc for example.
- term xterm-256color
- colorterm truecolor
- # Use bash and read the .bashrc when creating a new tab (the "-" for
- # this)
- defshell -bash
|