일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- chainlink 설명
- 컨트렉트 동일한 함수이름 호출
- ethers
- 러스트 기초 학습
- Vue
- rust 기초
- 스마트컨트렉트 함수이름 중복 호출
- multicall
- 깃허브명령어
- ethers type
- Vue.js
- 체인의정석
- ethers typescript
- 러스트기초
- 러스트 기초
- nestjs 튜토리얼
- ambiguous function description
- 스마트컨트렉트 예약어 함수이름 중복
- 머신러닝기초
- git rebase
- ethers websocket
- 스마트컨트렉트프록시
- 스마트컨트렉트테스트
- vue기초
- ethers v6
- 스마트 컨트렉트 함수이름 중복
- 프록시배포구조
- SBT표준
- nest.js설명
- 컨트렉트 배포 자동화
Archives
- Today
- Total
체인의정석
터미널 사용을 도와주는 툴들 (zplug, iterm2, autojump) 본문
728x90
반응형
1. zplug
https://github.com/zplug/zplug
zplug 의 경우 zsh의 여러 플러그인을 쉽게 관리하게 도와준다고 한다.
curl -sL --proto-redir -all,https https://raw.githubusercontent.com/zplug/installer/master/installer.zsh | zsh
위를 통해 설치가 가능하다.
설치 후 실행할 시
- zsh-users/zsh-syntax-highlighting: not installed
- lib/completion: not installed
- lib/key-bindings: not installed
- dracula/zsh: not installed
- plugins/git: not installed
Install? [y/N]: y
[zplug] Start to install 7 plugins in parallel
✔ Installed! lib/directories
✔ Installed! zsh-users/zsh-syntax-highlighting
✔ Installed! zsh-users/zsh-autosuggestions
✔ Installed! lib/completion
✔ Installed! lib/key-bindings
✔ Installed! dracula/zsh
✔ Installed! plugins/git
유용한 툴들을 알아서 다 기본적으로 설치해준다.
생상도 입혀주고 자동완성도 시켜준다.
그냥 한번에 설치를 해주니 편한것 같다.
2. auto jump
한번 방문한 경로라면
j 경로명 을 통해서 손쉽게 다시 경로로 점프가 가능한 프로그램
사용하면 시간단축이 많이 될 수 있을것 같다.
https://github.com/wting/autojump
깃허브 readme에서 설치 명령어 검색 후 활용
brew install autojump
보니까 최신 버전으로 업데이트가 가능하다고 해서
brew upgrade
명령어를 써서 업그레이드 하였다.
이후 에러가 뜨는데
Please source the correct autojump file in your shell's
startup file. For more information, please reinstall autojump
and read the post installation instructions.
brew info auto jump를 해보면
brew info autojump
==> autojump: stable 22.5.3 (bottled), HEAD
Shell extension to jump to frequently used directories
https://github.com/wting/autojump
/usr/local/Cellar/autojump/22.5.3_3 (24 files, 241.6KB) *
Poured from bottle on 2022-11-03 at 15:05:57
From: https://github.com/Homebrew/homebrew-core/blob/HEAD/Formula/autojump.rb
License: GPL-3.0-or-later
==> Dependencies
Required: python@3.11 ✘
==> Options
--HEAD
Install HEAD version
==> Caveats
Add the following line to your ~/.bash_profile or ~/.zshrc file:
[ -f /usr/local/etc/profile.d/autojump.sh ] && . /usr/local/etc/profile.d/autojump.sh
If you use the Fish shell then add the following line to your ~/.config/fish/config.fish:
[ -f /usr/local/share/autojump/autojump.fish ]; and source /usr/local/share/autojump/autojump.fish
Restart your terminal for the settings to take effect.
zsh completions have been installed to:
/usr/local/share/zsh/site-functions
==> Analytics
install: 4,500 (30 days), 13,274 (90 days), 61,619 (365 days)
install-on-request: 4,497 (30 days), 13,265 (90 days), 61,580 (365 days)
build-error: 1 (30 days)
여기에 쓰인대로 설정을 해주어야 한다.
vi ~/.zshrc
맨 밑에 아래 추가
[ -f /usr/local/etc/profile.d/autojump.sh ] && . /usr/local/etc/profile.d/autojump.sh
3. iterm 2
익숙해지면 터미널 창을 여러게 띄우고 컨트롤하는데 편리하다.
728x90
반응형
'개발 > docker & linux' 카테고리의 다른 글
리눅스 압축 파일 풀지 않고 확인하기 (0) | 2023.02.15 |
---|---|
mac) xcrun: error: invalid active developer path 에러 해결 (0) | 2022.12.29 |
mac docker & docker compose 설치 (0) | 2022.11.01 |
Mac OS , docker & oracle 사용하기 (2) (0) | 2021.08.24 |
Mac OS , docker & oracle 사용하기 (1) (0) | 2021.08.24 |
Comments