install2 zsh 설치/셋팅하기 - install, setting zsh이 좋은점 : tab 자동완성, 제안(Ctrl + r), 프롬프트 install zsh, oh-my-zsh, zsh-syntax-highlighting $ sudo apt install zsh && \ chsh -s `which zsh` && \ sudo apt install zsh-syntax-highlighting && \ echo "source /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" >> ~/.zshrc && \ curl -L https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh config zsh edit theme and add plug.. 2023. 3. 13. Rust 시작하기 책읽고, 공부하기 보다 먼저, rust 설치 / 환경셋팅하기 $ curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh // 프로젝트 폴더 만들기 $ mkdir temp & cd temp // 초기화 $ cargo init & ls // cargo 환경 활성화 $ . ~/.cargo/env // 프로젝트 생성 $ cargo new rust_test // 빌드 $ cargo build // 릴리즈 모드로 빌드 $ cargo build --release // 실행 $ cargo run // 포멧터 $ cargo fmt // docs html 문서화 - 브라우저 open $ cargo doc --open 2023. 3. 8. 이전 1 다음