기본 쉘을 'fish-shell'로 설정했습니다.
3246 단어 fishshell
내 컴퓨터는 Mac OSX(10.15.6)입니다.
쉘 설치/설정
간단히!!
> brew install fish
기본 셸 변경
시도합니다chsh -s /usr/local/bin/fish
. 그것은 일이 아니었다. Fish-shell은 기본 쉘이 아니므로 /etc/shells
에 대한 fish-shell 경로를 추가합니다.
> sudo sh -c 'echo /usr/local/bin/fish >> /etc/shells'
Password:
> tail -1 /etc/shells
/usr/local/bin/fish
한 번 더 chsh를 시도하십시오.
> chsh -s /usr/local/bin/fish
플러그인 설치 -- autojump --
나는 항상 autojump 명령을 사용합니다. j work
, j Docu
, j Desk
,... autojump
로 설정했습니다.
> brew reinstall autojump
그리고 나는 Fish configure를 씁니다.
> echo '[ -f /usr/local/share/autojump/autojump.fish ]; and source /usr/local/share/autojump/autojump.fish' >> ~/.config/fish/config.fish;
주제
fish-shell에는 theme-controll-plugin(Oh-MyFsh)[ https://github.com/oh-my-fish/oh-my-fish ]이 있습니다.
알겠습니다. 설치합니다.
> curl -L https://get.oh-my.fish | fish
끝났다! 자, 그럼 테마를 설치해보도록 하겠습니다.
<~>-> omf i ocean
Updating https://github.com/oh-my-fish/packages-main master... Done!
Error: ocean already installed.
⚓ ~
글꼴 색상은 어떻게 변경합니까?
나는 터미널을 켜는 데 사용합니다. 그래서 나는 명령을 보지 못했습니다.
fish_config
명령으로 하고 글꼴 색상을 변경합니다. 이것은 좋다 :-)
> brew install fish
시도합니다
chsh -s /usr/local/bin/fish
. 그것은 일이 아니었다. Fish-shell은 기본 쉘이 아니므로 /etc/shells
에 대한 fish-shell 경로를 추가합니다.> sudo sh -c 'echo /usr/local/bin/fish >> /etc/shells'
Password:
> tail -1 /etc/shells
/usr/local/bin/fish
한 번 더 chsh를 시도하십시오.
> chsh -s /usr/local/bin/fish
플러그인 설치 -- autojump --
나는 항상 autojump 명령을 사용합니다.
j work
, j Docu
, j Desk
,... autojump
로 설정했습니다.> brew reinstall autojump
그리고 나는 Fish configure를 씁니다.
> echo '[ -f /usr/local/share/autojump/autojump.fish ]; and source /usr/local/share/autojump/autojump.fish' >> ~/.config/fish/config.fish;
주제
fish-shell에는 theme-controll-plugin(Oh-MyFsh)[ https://github.com/oh-my-fish/oh-my-fish ]이 있습니다.
알겠습니다. 설치합니다.
> curl -L https://get.oh-my.fish | fish
끝났다! 자, 그럼 테마를 설치해보도록 하겠습니다.
<~>-> omf i ocean
Updating https://github.com/oh-my-fish/packages-main master... Done!
Error: ocean already installed.
⚓ ~
글꼴 색상은 어떻게 변경합니까?
나는 터미널을 켜는 데 사용합니다. 그래서 나는 명령을 보지 못했습니다.
fish_config
명령으로 하고 글꼴 색상을 변경합니다. 이것은 좋다 :-)나는 이것들을 본다
Reference
이 문제에 관하여(기본 쉘을 'fish-shell'로 설정했습니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/a_yasui/i-setup-to-fish-shell-for-my-default-shell-48il텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)