On WSL:
sudo add-apt-repository ppa:kelleyk/emacs
sudo apt-get update
sudo apt install emacs26
git clone https://github.com/syl20bnr/spacemacs ~/.emacs.d
sudo apt install xfce4
echo "export DISPLAY=:0.0" >> ~/.bashrc
source ~/.bashrc
On Windows:
choco install vcxsrv
Inside WSL: Create short cut to windows Desktop
wslusc -g /home/mbatsching/bin/em
Install missing font
wget https://github.com/adobe-fonts/source-code-pro/archive/2.030R-ro/1.050R-it.zip
unzip 1.050R-it.zip
if [ ! -d "~/.fonts" ] ; then
mkdir ~/.fonts
fi
cp source-code-pro-*-it/OTF/*.otf ~/.fonts/
fc-cache -f -v
add this to bashrc
export PATH=$PATH:~/bin
cd ~