vimrc에서 주석은 "이다. colorscheme의 경우 ~/.vim/colors 디렉토리 내에 다운로드한 파일을 넣어 설정해줄 수 있으며, 나는 이 깃헙에서 jellybeans 라는 테마를 다운받아 적용했다. 다른 테마를 찾아 적용하려면 맨 마지막 줄의 jellybeans를 다른 테마명으로 바꿔야 함
" Syntax Highlight
if has("syntax")
syntax on
endif
" indent
set autoindent
set cindent
set smartindent
set tabstop=4
set expandtab
set shiftwidth=4
" line number
set nu
" colorscheme ~/.vim/colors
colorscheme jellybeans
반응형
'CS' 카테고리의 다른 글
파이썬 bson 파일 열기 (0) | 2023.07.11 |
---|---|
파이썬에서 SSH 터널링과 mysql 커넥션 풀을 통해 DB 접속하기 (0) | 2023.07.10 |
bipartite 그래프 간단하게 시각화하기 (0) | 2023.06.30 |
Git 기존 브랜치 가져와서 새로운 브랜치 생성하기 (0) | 2023.06.05 |
[vscode] 원격 탐색기 ssh config alias 설정하기 (0) | 2023.05.19 |