so just wrangling a dev environment that lets me work on supercollider without using the wifi (which is super flakey for me but I know that that is being rewritten)
In order to use screen to connect over the serial port - follow instructions elsewhere. ie:
screen /dev/usb.tty- 115200
then in the screen if you want full screen and colour I needed to do:
stty rows 54 columns 181
export TERM=xterm-256color
then vim is working full screen with syntax highlighting! win 
.bashrc has all kinds of things in it - will need to review
including messing with the TERM - not sure why I needed to set it
this is on a mac but should be similar elsewhere
(I’m too lazy to figure out using maiden over serial - presume some kind of tunnel would do the trick - if anyone knows how to do it - please share! )
(also worth noting - the usb connection directly from my Mac keeps the battery charged. Which is nice)
(I also installed tmux - which works nicely as well )
(edit - also installed this into my vim so I have syntax highlighting https://github.com/supercollider/scvim - I’ve not bothered trying to get the interactivity to work because I don’t need it here )
(last edit - if you are connecting with something that wants to use the bottom line for status (like mincom for example) just reduce the rows in the stty command)
(really the last edit - if you are running on the terminal (as above or via ssh):
go into norns. make a copy of start.sh - I called mine dstart.sh and edit it to say
cd “$(dirname “$0”)”
./crone.sh &
./matron.sh &
- ie take out the pipe to dev null for the logging - that way you can see all the logging on the terminal
)