어떤 배포판에는 기본기능만 가진 vim-tiny가 기본설치되어 있기 때문에 안될 수도 있습니다.
모든 기능을 가진 "vim"을 설치하세요.
그리고 귀찮음을 피하기위해서 .vimrc 파일에
syntax on
이라고 적어줘야 할겁니다.
하지만 키워드나, 인클루드, 리터럴 같은것만 구문강조 컬러가 들어가고 함수명이나 변수명은 컬러가 안들어갑니다.
정말로 함수명과 변수명에 컬러가 들어가는 플러그인이 있다면 저도 알고 싶네요.
"########################################
" Enabel pathogen
"########################################
call pathogen#infect()
call pathogen#helptags()
"########################################
" Background color
"########################################
:color desert
"########################################
" Enable filetype plugins
"########################################
syntax on
filetype plugin on
"########################################
"syntastic
" <a href="https://github.com/scrooloose/syntastic" rel="nofollow">https://github.com/scrooloose/syntastic</a>
" Enable program language syntax check
"########################################
set statusline+=%#warningmsg#
set statusline+=%{SyntasticStatuslineFlag()}
set statusline+=%*
let g:syntastic_always_populate_loc_list = 1
" Always close location-list window, setting to 0 makes errors
" let g:syntastic_auto_loc_list = 1
let g:syntastic_check_on_open = 1
let g:syntastic_check_on_wq = 0
"########################################
" Shortcut for TagbarToggle
"########################################
nmap <F5> :TagbarToggle<CR>
"########################################
" Restrict to 80 column
" Please put this into the end of vimrc
"########################################
set colorcolumn=80
set textwidth=80
"########################################
"Enable file broswer - NERDTree
"########################################
" Open nerdtree if there is no specification of files
autocmd StdinReadPre * let s:std_in=1
autocmd VimEnter * if argc() == 0 && !exists("s:std_in") | NERDTree | endif
" Mapping Nerdtree to ,ne
let mapleader = ","
nmap <leader>ne :NERDTree<cr>
"########################################
" CtrlPBuffer for faster file searching
"########################################
nmap <leader>b :CtrlPBuffer<cr>
...
:syntax on 하셨어요?
하지만..
하지만 vim의 기본 기능에 키워드 뿐만 아니라 함수명과 변수명도 컬러가 들어가나요?
어떤 배포판에는 기본기능만 가진 vim-tiny가 기본설치되어 있기 때문에 안될 수도 있습니다.
모든 기능을 가진 "vim"을 설치하세요.
그리고 귀찮음을 피하기위해서 .vimrc 파일에
syntax on
이라고 적어줘야 할겁니다.
하지만 키워드나, 인클루드, 리터럴 같은것만 구문강조 컬러가 들어가고 함수명이나 변수명은 컬러가 안들어갑니다.
정말로 함수명과 변수명에 컬러가 들어가는 플러그인이 있다면 저도 알고 싶네요.
Use syntastic
Syntastic 을 한번 사용해보세요.
저의 .vimrc 파일입니다.
vim-enhanced 가 설치가 되어 있으면 vim
vim-enhanced 가 설치가 되어 있으면 vim 으로 filename.c 를 열었을때 왠만하면 하이라이트 되어서 나올껍니다.
일단 vim-enhanced 가 설치 되어 있나 확인하세요
--------------- 절취선 ------------------------
하늘은 스스로 삽질하는 자를 삽으로 팬다.
http://glay.pe.kr
네 감사합니다. 바로 해봐야 겠네여.
^^
댓글 달기