시작하기전에
apt update
apt upgrade -y
Theme
One dark pro
zsh
install curl
apt-get install curl
install zsh
apt-get install zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
plugin : auto suggestion
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
plugin : syntax highlighting
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
update
.zshrc
plugins=(git) 을 plugins=(git zsh-autosuggestions zsh-syntax-highlighting) 로 변경
source ~/.zshrc
Powerlevel10k
p10k
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
.zshrc파일
ZSH_THEME=robbyrussell 를 ZSH_THEME="powerlevel10k/powerlevel10k" 로 변경
source ~/.zshrc
(재설정 : p10k configure)
추천세팅
Pure, Right, 24-hour format, oneline, compact, no, verbose(recommended),
Tmux
sudo apt-get install tmux
- 명령어
- tmux : 새로운 tmux 세션만드는거
- tmux ls : tmux 리스트를 확인할수 있음
- tmux attach -t 세션숫자 : 해당session으로 들어감
- tmux a -t 세션숫자 : 3과는 동일.
- Session
- (ctrl+b) + d : 해당 session에서 나오기
- exit : 해당 session을 종료 및 제거
- (ctrl+b) + [ : 스크롤할수있음. q를 누르면 스크롤종료
- window
- ctrl+b c : 새로운 윈도우 생성
- ctrl+b 윈도우 숫자 : 해당 윈도우로 이동
- ctrl d : 해당 윈도우를 제거함Tmux에서 ipynb 파일을 run하는법
- Tmux 내부에서 마우스로 스크롤 가능하게하는법 : tmux set -g mouse on
- ".ipynb"를 python으로 변경 : jupyter nbconvert --to python baseline_fcn_resnet50.ipynb
- 실행 : ipython baseline_fcn_resnet50.py
- 전역
마우스 스크롤 가능하게하는법 (tmux 내부에서 실행)
tmux set -g mouse on
tzdata
sudo apt install tzdata
- 6(Asia) → 69(Seoul)
Htop
apt-get install htop
ETC
apt install -y tzdata zsh htop tree tmux ffmpeg libsm6 libxext6
'생산성, 개발장비' 카테고리의 다른 글
m1맥북에어에서 외장모니터2대이상 사용하는법 (0) | 2022.10.02 |
---|---|
윈도우 개발환경 세팅하는법 (0) | 2022.07.30 |
LG전자 34wn750 를 사려는 사람들에게 (1) | 2022.03.22 |
트리와 애플 매직패드 트레이 리뷰 (0) | 2022.03.16 |
powertoys 사용해서 윈도우 화면분할 레이아웃설정하기 (0) | 2022.02.22 |