curl https://raw.githubusercontent.com/elhmn/dotfiles/main/install.sh | bash
The local dev environment is based on docker.
docker build . -t dev-container
You can build without cache using
docker build . -t dev-container --no-cache
docker run --rm -v "$(echo $HOME)/workspace:/home/user/workspace" -p 80:80 -p 8080:8080 -p 3000-3010:3000-3010 -P -dt dev-container
docker exec -it $(docker ps | grep dev-container | head -n1 | cut -d " " -f 1) /bin/bash
- If
:GoInstallBinaries
does not work try adding theexport GOBIN=$GOPATH/bin
to your.zshrc
or.bashrc
- An issue with
Error on execute :pyx command, ultisnips feature of coc-snippets
try to runpip3 install pynvim
. More informations and here