9 lines
641 B
Bash
9 lines
641 B
Bash
# setup vscode remote server
|
|
curl -fsSL https://gitea.nicholaspease.com/npease/CoderTemplatesV2/raw/branch/main/vscode_server.sh | sh
|
|
# wakatime setup
|
|
echo "[settings]" >> ~/.wakatime.cfg && echo "api_url = ${var.waka_api_url}" >> ~/.wakatime.cfg && echo "api_key = ${var.waka_api_key}" >> ~/.wakatime.cfg && code-ser>
|
|
# FancyGit terminal setup
|
|
wget https://raw.githubusercontent.com/diogocavilha/fancy-git/master/install.sh && sh ./install.sh --nofontconfig && rm ./install.sh
|
|
# Misc and Install Extensions
|
|
echo export GIT_ASKPASS= >> ~/.bashrc
|
|
code-server --install-extension fabiospampinato.vscode-diff --install-extension eamodio.gitlens |