보관함

azure ubuntu 설치 ver 2022

TimeZone Setting ls -l /etc/localtime cd /etc sudo rm -rf localtime sudo ln -s /usr/share/zoneinfo/Asia/Seoul localtime # time changed UTC -> KST date package update sudo apt update sudo apt upgrade do-release-upgrade sudo apt autoclean sudo apt autoremove Util Install & Setting # install Utils sudo apt install build-essential sudo apt install net-tools colordiff […]

mac osx zsh neovim 환경설정

~/.zshrc

# Set name of the theme to load — if set to “random”, it will # load a random theme each time oh-my-zsh is loaded, in which case, # to know which specific one was loaded, run: echo $RANDOM_THEME # See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes #ZSH_THEME=”robbyrussell” ZSH_THEME=”agnoster” # Uncomment the following line if you want to […]

Ubuntu zsh vim Setting

apt install build-essential apt install net-tools apt install openssh-server systemctl enable ssh systemctl restart ssh apt install curl apt install tmux apt install mc apt install git apt install zsh sh -c “$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)” chsh -s /usr/bin/zsh # logout 필요 zsh # 일단 한번 실행 git clone https://github.com/zsh-users/zsh-autosuggestions.git $ZSH_CUSTOM/plugins/zsh-autosuggestions git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $ZSH_CUSTOM/plugins/zsh-syntax-highlighting […]