Skip to content

Instantly share code, notes, and snippets.

@yspkm
Created June 7, 2023 01:38
Show Gist options
  • Save yspkm/a868b97355d721fd408377575ef23b0b to your computer and use it in GitHub Desktop.
Save yspkm/a868b97355d721fd408377575ef23b0b to your computer and use it in GitHub Desktop.
initial setting
sudo apt-get update
sudo apt-get upgrade -y
sudo apt-get install build-essential -y
sudo apt-get install openjdk-20-jdk -y
sudo apt-get install python3 python3-pip python-is-python3 -y
sudo apt-get install golang-go -y
sudo apt-get install net-tools
sudo apt-get install ucommon-utils
sudo snap install nvim --classic
git config --global user.name <이름>
git config --global user.email <이메일>
git config --global core.editor nvim
cd ~
curl -sL https://deb.nodesource.com/setup_19.x -o nodesource_setup.sh
sudo bash nodesource_setup.sh
sudo apt install nodejs
sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
:PlugInstall
# .bashrc
force_color_prompt=yes
alias vi=nvim
alias vim=nvim
set -o vi
export JAVA_HOME=$(dirname $(dirname $(readlink -f $(which java))))
export PATH=$PATH:$JAVA_HOME/bin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment