This commit is contained in:
Reinaldy Rafli 2021-08-19 21:11:34 +07:00
parent 466c89702c
commit 5ecb20b8e5
7 changed files with 48 additions and 9 deletions

View File

@ -127,6 +127,15 @@ export DISPLAY=$(cat /etc/resolv.conf | grep nameserver | awk '{print $2; exit;}
sudo /etc/init.d/dbus start &> /dev/null
. "$HOME/.cargo/env"
# enable GPG signing
export GPG_TTY=$(tty)
if [ ! -f ~/.gnupg/S.gpg-agent ]; then
eval $( gpg-agent --daemon --options ~/.gnupg/gpg-agent.conf )
fi
export GPG_AGENT_INFO=${HOME}/.gnupg/S.gpg-agent:0:1
export EDITOR="micro"
export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64
export DOTFILES_PATH=/home/reinaldy/.dotfiles

View File

@ -27,7 +27,6 @@ if [ -d "$HOME/.local/bin" ] ; then
fi
export GOPATH=$HOME/go
export PATH=/usr/local/go/bin:$GOPATH/bin:/opt/julia/bin:/usr/local/bin/heroku:$PATH
export PATH=/usr/local/go/bin:$GOPATH/bin:$PATH
# :/usr/local/pypy3.7-v7.3.5-linux64/bin
export GPG_TTY=$(tty)
. "$HOME/.cargo/env"

View File

@ -5,8 +5,8 @@ fnm uninstall 16
fnm install 14
fnm use 14
npm install -g yarn tldr pnpm npm-check-updates np commitizen add-gitignore
npm install -g yarn tldr pnpm npm-check-updates np node-gyp commitizen add-gitignore
fnm install 16
fnm use 16
npm install -g yarn tldr pnpm npm-check-updates np commitizen add-gitignore
npm install -g yarn tldr pnpm npm-check-updates np node-gyp commitizen add-gitignore

View File

@ -1,4 +1,5 @@
{
"Alt-/": "lua:comment.comment",
"CtrlUnderscore": "lua:comment.comment"
}
"Alt-/": "lua:comment.comment",
"CtrlUnderscore": "lua:comment.comment",
"F6": "command-edit:gorename "
}

View File

@ -3,5 +3,6 @@
"tabstospaces": false
},
"colorscheme": "night-owl",
"tabsize": 2
"tabsize": 2,
"tabtospaces": true
}

View File

@ -1,6 +1,8 @@
#!/usr/bin/env bash
function install () {
cd ~
sudo apt-get install xclip
curl https://getmic.ro | bash
sudo mv micro /opt/bin
sudo rm $HOME/.config/micro/settings.json

27
scripts/php.sh Executable file
View File

@ -0,0 +1,27 @@
#!/usr/bin/env bash
function install () {
cd ~
sudo apt-get install -y php php-mbstring php-json php-imap php-bz2 php-fpm php-curl php-cgi php-cli php-mysql php-pgsql
sudo php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
sudo php -r "if (hash_file('sha384', 'composer-setup.php') === '756890a4488ce9024fc62c56153228907f1545c228516cbf63f885e036d37e9a59d27d63f46af1d4d07ee0f76181c7d3') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
sudo php composer-setup.php
sudo php -r "unlink('composer-setup.php');"
sudo mv composer.phar /usr/local/bin/composer
printf "\n\n"
php --version
composer --version
}
function uninstall () {
sudo rm /usr/local/bin/composer
sudo apt-get remove -y php*
}
if [ "$1" == "install" ]; then
install
elif [ "$1" == "uninstall" ]; then
uninstall
else
echo "Only install and uninstall"
fi