Last active
July 15, 2019 06:54
-
-
Save jarnaldich/2a41a0fb6d703b054b18cf7a7d1f6188 to your computer and use it in GitHub Desktop.
[PrepareWSL] Prepare WSL for remote acess #wsl #zsh
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get purge openssh-server | |
sudo apt-get install openssh-server | |
sudo apt install -y zsh | |
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | |
# Can change THEME to agnoster in .zshrc | |
curl -LO https://github.com/neovim/neovim/releases/download/nightly/nvim.appimage | |
chmod u+x nvim.appimage | |
./nvim.appimage --appimage-extract | |
alias nvim="squashfs-root/AppRun" | |
sudo apt install -y gcc | |
sudo apt install -y make | |
sudo add-apt-repository -y ppa:ubuntugis/ppa | |
sudo apt-get update | |
sudo apt-get install -y gdal-bin | |
curl -sLf https://spacevim.org/install.sh | bash | |
May want to add layers 'colorscheme'. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment