mac osx vi 강조 표시 설정
1696 단어 Mac OS X
Unfortunately the Andrew's Blog that ships with vim (Leopard ) doesn’t have an optimized configuration file to allow for syntax highlighting , auto indentation , etc.
To fix this, open a new Terminal window and enter these commands to open vim ’s configuration file:
cd /usr/share/vim
sudo vim vimrc
Press the ‘i ‘ key to switch vim to Insertion Mode , then enter these lines below the ‘set backspace=2 ‘ line:
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
Press the Escape key to take vim out of Insertion Mode , then press ‘: ‘ (colon ) followed by ‘x ‘ to save the file and exit. Enter this command again:
sudo vim vimrc
… and you’ll see that vim now automatically indents code , displays the cursor position , has syntax highlighting , etc.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
macOS 터미널에서 Hostname 가리기업무하다 보면 터미널 한 줄에서 명령어를 전부 표시하기 어려운 경우가 종종 있습니다. 물론 Oh My ZSH 테마를 바꾸는 것도 방법이겠지요. 저는 Hostname을 가려서 좀 더 공간을 확보해보겠습니다! Code...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.