git bash에solarized 배색 방안과 별명을 적용합니다
1423 단어 gitbash
git bash에solarized 적용
솔라리즈드의 화이트는 눈에 부드러워 자주 사용하기 때문에 git bash에도 사용해 보세요.
solarized 컬러 코드 다운로드
mavnn/mintty-colors-solarized여기서부터,sol.dark랑 Sol.light를 길잡이나 복사해서 붙이는 임의의 위치에 두십시오.
~/.bashrc에 설정 쓰기
~/.bashrc에 쓰기 source ファイルパス
예제
~/.bashrcsource d:/Desktop/color/sol.light
이후 source ~/.bashrc
또는 bash
에 명령을 입력하거나 재부팅하면 설정이 반영됩니다.
색상 별칭 수정하기
~/.bashrcalias light='sed -i "s/^source\sd:\/Desktop\/color\/.\+$/source d:\/Desktop\/color\/sol.light/" ~/.bashrc && source ~/.bashrc'
alias dark='sed -i "s/^source\sd:\/Desktop\/color\/.\+$/source d:\/Desktop\/color\/sol.dark/" ~/.bashrc && source ~/.bashrc'
이 별명에서 파일 경로를 자신의 것으로 만들면 light
또는 dark
을 치면 solarized의 색을 바꿀 수 있습니다
기분이나 여러 git bash를 열 때 색상을 쉽게 바꿀 수 있어 편리합니다
Reference
이 문제에 관하여(git bash에solarized 배색 방안과 별명을 적용합니다), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/kodama321/items/24179e8c3c64816a9dac
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
source d:/Desktop/color/sol.light
~/.bashrc
alias light='sed -i "s/^source\sd:\/Desktop\/color\/.\+$/source d:\/Desktop\/color\/sol.light/" ~/.bashrc && source ~/.bashrc'
alias dark='sed -i "s/^source\sd:\/Desktop\/color\/.\+$/source d:\/Desktop\/color\/sol.dark/" ~/.bashrc && source ~/.bashrc'
이 별명에서 파일 경로를 자신의 것으로 만들면 light
또는 dark
을 치면 solarized의 색을 바꿀 수 있습니다기분이나 여러 git bash를 열 때 색상을 쉽게 바꿀 수 있어 편리합니다
Reference
이 문제에 관하여(git bash에solarized 배색 방안과 별명을 적용합니다), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/kodama321/items/24179e8c3c64816a9dac텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)