최근 terminal을 의도적으로 많이 쓰려고 노력중인데,,,
사실 잘 손에 안 익는다,,,
vi editor를 사용할때 밋밋한 색상 때문에,,,
code가 눈에 잘 들어오지 않는다,,,
그래서 vi editor color 설정하는 법을 찾아보았다,,,
1.bash_profile 또는 profile 파일 편집
1 2 3 | vi ~/.bash_profile //또는 vi ~/.profile |
1 2 3 | export TERM="xterm-color" export CLICOLOR=1 export LSCOLORS=ExFxCxDxBxegedabagacad |
나는 zsh을 사용중이어서 zsh의 zprofile 파일을 수정하였다,,,
2./usr/share/vim/vimrc 수정
1 2 3 | sudo vi /usr/share/vim/vimrc //password 입력 |
하단에 하위 내용 추가
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | set ai " auto indenting set history=100 " keep 100 lines of history set ruler " show the cursor position syntax on " syntax highlighting set hlsearch " highlight the last searched term filetype plugin on " use the file type plugins " When editing a file, always jump to the last cursor position autocmd BufReadPost * \ if ! exists("g:leave_my_cursor_position_alone") | \ if line("'"") > 0 && line ("'"") <= line("$") | \ exe "normal g'"" | \ endif | \ endif |
BusinessFirstFamily
Hey, thanks for the great post. I feel a lot better after having read this.