일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- cython
- datascience
- Visual Studio
- conda
- portforwarding
- tab space
- vim
- mpi4py
- SSH
- openmp
- Anaconda
- jupyter
- c++
- python
- gfortran
- intel compiler
- polyglot
- HFS+
- Windows
- HDF5
- MAC
- Matplotlib
- h5py
- virtual
- GSL
- LaTeX
- vi
- cygwin
- arXiver
- hyperref
- Today
- Total
Astro Coke
[Vim] vim or vimdiff colorscheme setting 본문
source: https://github.com/romainl/Apprentice
특히 vimdiff 를 사용할때 색상 때문에 가독성이 떨어지는 경우가 빈번했다.
그럴때는 colorscheme 을 바꿔 주는 것이 좋다.
찾아본 것 중에는 위의 apprentice 가 괜찮았음.
apprentice.vim을 다운 받은 후
~/.vim/colors/
폴더안에 복사를 한다. 그리고 .vimrc 를 열어
if &diff
colorscheme apprentice
endif
를 추가하면 됨. 이 구절은 vimdiff 를 사용할때만 apprentice.vim 칼라를 이용한다는 내용.
혹은 간단히,
~/.vim/colors/
에 diffcolors.vim 을 만들고 그 안에
hi DiffAdd ctermbg=black ctermfg=green cterm=reverse
hi DiffChange ctermbg=black ctermfg=magenta cterm=reverse
hi DiffDelete ctermbg=black ctermfg=darkred cterm=reverse
hi DiffText ctermbg=black ctermfg=red cterm=reverse
를 추가함.
그 후 .vimrc 에
if &diff
colorscheme diffcolors
endif
를 설정하면 됨.
'Computer Setup' 카테고리의 다른 글
[HDF5] Install HDF5 w/ Fortran in Windows & Visual Studio (0) | 2019.04.05 |
---|---|
[Chrome&Windows] 'Establishing secure connection' issue (0) | 2019.04.05 |
[Cygwin] Import User Path Variable in Windows when access with SSH (0) | 2019.04.04 |
[Cygwin] Using Tex Live in Cygwin (0) | 2019.04.04 |
[Python] inline backend 와 matplotlibrc 의 충돌 (0) | 2019.04.03 |