VimEditor의 개발용 환경설정

관련정보

Python, Java개발용 yong27 환경

준비물

플러그인 설정방법은 VimTips 를 참고

syn on   
set nonu 
set title 
set nocompatible 
set makeprg=cmd\ /c\ \"cmd\ \/c\ javac\ %\ 2>&1\" 
set errorformat=%A%f:%l:\ %m,%-Z%p^,%-C%.%#
set fileencoding=korea  
set tabstop=8 sw=4 softtabstop=4 smarttab expandtab  
set ai showmatch hidden incsearch ignorecase smartcase smartindent hlsearch  
set selectmode=mouse  
set foldmethod=indent  
set nofen  
set foldminlines=3  
set autowrite 

filetype on  
filetype plugin on  
filetype indent on  

nmap <F4> :lcd<CR>:Run<CR> 
nmap <F9> :w<CR>:make<CR>
com! -nargs=* -complete=file Run !java %< <args>
map <F5> :wa <CR> :! python % <CR>
map <F6> :wa <CR> :! javac % <CR>
map <F7> :! java %< <CR>
map <F8> :! gcc -g -Wall -o%< % <CR>
map <F9> :! %< <CR>
map <F11> <C-W>_ 
 
source $VIMRUNTIME/vimrc_example.vim 
source $VIMRUNTIME/mswin.vim 
source $VIMRUNTIME/python.vim 
source $VIMRUNTIME/java_getset.vim

behave mswin 
behave xterm  
 
highlight Normal " guibg=lightyellow  
autocmd BufRead,BufNewFile *.py syntax on  
autocmd BufRead,BufNewFile *.py set ai  
autocmd BufRead,BufNewFile *.py set makeprg=errout\ python\ %  
autocmd BufRead,BufNewFile *.py set errorformat=%+G\ \ File\ \"%f\"\\,\ line\ %l\\,\ in\ %m  

let python_highlight_all=1  
let g:EnhCommentifyUseAltKeys = "no"  
let g:EnhCommentifyPretty = "yes" 
let g:load_templates = "yes"

set diffexpr=MyDiff()
function MyDiff()
  let opt = ''
  if &diffopt =~ 'icase' | let opt = opt . '-i ' | endif
  if &diffopt =~ 'iwhite' | let opt = opt . '-b ' | endif
  silent execute '!C:\Vim\vim61\diff -a ' . opt . v:fname_in . ' ' . v:fname_new . ' > ' . v:fname_out
endfunction 

"Follow is platform specific
"In MS-Windows
set lines=40


syn on
set nonu
set title
set makeprg=python\ %
set fileencoding=korea
set tabstop=8 sw=4 softtabstop=4 smarttab expandtab
set ai showmatch hidden incsearch ignorecase smartcase smartindent hlsearch
set selectmode=mouse
set foldmethod=indent
set nofen
set foldminlines=3
set autowrite

filetype on
filetype plugin on
filetype indent on

nmap <F5> :wa <CR> :! python % <CR>
nmap <F8> :! gcc -g -Wall -o%< % <CR>

source $VIMRUNTIME/python.vim

let g:EnhCommentifyUseAltKeys = "no"
let g:EnhCommentifyPretty = "yes"

-- yong27, 2003-02-01


그밖의 설정들


AnswerMe 문서안에 설정을 적고, 그 문서가 열리면 그 설정으로 세팅되도록 하는것을 본것같은데 아시는분? --yong27, 2005-06-09

VimRc (last edited 2013-04-08 10:12:00 by 61)