vimrc

color desert
se nu
se ru
se sw=4
se sts=4
se ts=4
se ai
se cin
set smartindent
syntax on
set noeol
set nobackup
set hlsearch
set incsearch " 순간검색
set ignorecase
set smartcase " 대문자로 검색하면 구분 함
set noea "창을 나눌 때 똑같이 만들지 않음.
"set mouse=a "마우스 사용 가능
set autoread "외부에서 변경시 자동 읽기
set ve=onemore "줄 끝까지 커서 이동 가능

au filetype python set cc=80

"Scroll before edge
set scrolloff=10

set fencs=utf-8,cp949,euc-kr

filetype plugin indent on

set tags+=./tags
map <F3> :Tlist<cr><C-W><C-W>

map <C-S> :w<cr>
imap <C-s> <esc>:w<cr>i

map <C-J> <C-W>-
map <C-K> <C-W>+
map <C-H> <C-W><
map <C-L> <C-W>>
imap <C-J> <esc><C-W>-i
imap <C-K> <esc><C-W>+i
imap <C-H> <esc><C-W><i
imap <C-L> <esc><C-W>>i

"Up and Down for wrapped lines
nnoremap j gj
nnoremap k gk

"Jump to start and end of line
noremap H ^
noremap L $

"Shortcut esc
inoremap lkj <esc>

"Force saving root permimssion file
cmap w!! %!sudo tee > /dev/null %

"Clear search highlights
noremap <silent><leader>/ :nohls<cr>

"insert one charactor
nmap <space> i_<esc>r
"indent all of files
nmap <leader>g mzgg=G'z

"Open, close, enter pairs
"noremap! "" ""<left>
"noremap! '' ''<left>

"But not these.
"noremap! '', '',
"noremap! '') '')
"noremap! ''; '';
"for python
inoremap """ """"""<left><left><left><cr>

noremap! (( ()<left>
noremap! (<cr> (<cr>)<c-o>O
noremap! (; ();<esc>hi
noremap! (<cr>; (<cr>);<c-o>O
noremap! ('; ('');<esc>hhi
noremap! ("; ("");<esc>hhi
noremap! (' ('')<esc>hi
noremap! (" ("")<esc>hi

noremap! {{ {}<left>
noremap! {<cr> {<cr>}<c-o>O
noremap! {; {};<esc>hi
noremap! {<cr>; {<cr>};<c-o>O
noremap! {'; {''};<esc>hhi
noremap! {"; {""};<esc>hhi
noremap! {' {''}<esc>hi
noremap! {" {""}<esc>hi

noremap! [[ []<left>
noremap! [<cr> [<cr>]<c-o>O
noremap! [; [];<esc>hi
noremap! [<cr>; [<cr>];<c-o>O
noremap! ['; [''];<esc>hhi
noremap! ["; [""];<esc>hhi
noremap! [' ['']<esc>hi
noremap! [" [""]<esc>hi

"map! <C-M> <esc>[{v]}zf

if filereadable('Makefile')
    au Filetype c set makeprg=make
else
    au FileType c set makeprg=gcc\ -o\ %<\ %
endif
au FileType python set makeprg=python\ -i\ %

"autocmd BufWinEnter *.c,*.php,*.html,*.py,*.js silent! !ctags <afile>
"autocmd BufWinLeave *.c,*.php,*.html,*.py,*.js silent! !rm tags
"set tags+=/tmp/tag

"cscope
set csprg=/usr/bin/cscope
set csto=0
set cst
set nocsverb

set csverb

" set cursor to the last worked line
set viewoptions=cursor
au BufWinLeave *.c,*.cc,*.h,*.html,*.php,Makefile,*.py,*.sh mkview
au BufWinEnter *.c,*.cc,*.h,*.html,*.php,Makefile,*.py,*.sh loadview
" ---

filetype plugin on
"set tags+=/usr/include/tags

" for gvim
if has("gui_running")
    set lines=60 columns=180
    set guifont=Source\ Code\ Pro\ Semibold\ 12
endif

function! SuperTab()
    if (strpart(getline('.'),col('.')-2,1)=~'^\W\?$')
        return "\<Tab>"
    else
        return "\<C-n>"
    endif
endfunction
inoremap <Tab> <C-r>=SuperTab()<cr>

function! Closer(arg)
    "Next character from cursor
    let l:current = strpart(getline('.'), col('.')-1, 1)
    if(a:arg == l:current)
        return "\<right>"
    else
        return a:arg
    endif
endfunction
inoremap " <C-r>=Closer('"')<cr>
inoremap ' <C-r>=Closer("'")<cr>
inoremap ) <C-r>=Closer(')')<cr>
inoremap ] <C-r>=Closer(']')<cr>

vim.tar.gz

pentadactylrc

"1.0rc1

loadplugins '\.(js|penta)$'
group user
highlight Hint font: bold 20px "Source Code Pro", monospace !important; margin: -.2ex; padding: 0 0 0 1px; outline: 1px solid rgba(0, 0, 0, .5); background: rgba(255, 248, 231, .8) !important; color: black !important;
map -count -modes=n j -builtin <count><C-d>
map -count -modes=n k -builtin <count><C-u>
set autocomplete=
set guioptions=brs
set hintkeys=asdfg;lkjhweio
set hintmatching=firstletters
set scroll=5
set showtabline=multitab
set hinttags+=a:not([name])

set editor='/usr/local/bin/mvim -f + +"sil! call cursor(0, <column>)" '

set passkeys=mail.google.com:'`~!#*+-./<C-Down><C-s><Enter>?INU[]acefjklmnopqrsuvxyz',*a,*n,*r,*s,*t,*u,ga,gc,gd,gi,gl,gs,gt,yo
set passkeys+=twitter.com:jkr.<cr>ln,gr,gh,ga,gf
set passkeys+=plus.google.com:jkonprl<Left><Right><Up><Down>
set strictfocus=twitter.com:laissez-faire,'chrome:*':laissez-faire,*:moderate

nmap -builtin <C-]> <C-v><esc>
imap -builtin <C-]> <esc>
tmap -builtin <C-]> <esc>

imap -builtin <C-p> <esc><C-p>
imap -builtin <C-n> <esc><C-n>

imap -builtin <cr> <pass>

js hints.addMode('h', "Echo title of element", function (elem) dactyl.echo(elem.title));
se extendedhinttags+=[h]:[title]

js hints.addMode('e', 'Focus input field', function(elem){dactyl.focus(elem);} );
se extendedhinttags+=[e]:input:not([type=hidden]),textarea,button,select

"map <esc> <C-v><esc><esc>

" vim: set ft=vim: