Skip to content

Commit

Permalink
Modify
Browse files Browse the repository at this point in the history
  • Loading branch information
kmnk committed Apr 25, 2013
1 parent 5e42f02 commit d64422c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
7 changes: 6 additions & 1 deletion dotfiles/dot.zshrc
Expand Up @@ -67,7 +67,7 @@ setopt share_history
setopt append_history

# 自動コマンド補完をいい感じにする
autoload -Uz compinit; compinit -u
autoload -Uz compinit
zstyle ':completion:*:default' menu select=1 list-colors '' matcher-list 'm:{a-z}={A-Z}'
autoload history-search-end
zle -N history-beginning-search-backward-end history-search-end
Expand All @@ -89,4 +89,9 @@ alias scl="screen -ls"
alias sct="screen -D -R"
alias scn="screen -S"

# cd関連
alias ..="cd ../"
alias ...="cd ../../"
alias ....="cd ../../../"

# vim: filetype=zsh
1 change: 1 addition & 0 deletions vim/profiles/appends.vim
Expand Up @@ -111,6 +111,7 @@ function! s:init_cmdwin()
inoremap <buffer><expr><BS> pumvisible() ? "\<C-y>\<C-h>" : "\<C-h>"
inoremap <buffer> qq <Esc>:<C-u>quit<CR>
inoremap <buffer> kk <Esc>k
inoremap <buffer> <CR> <CR>
" Completion.
inoremap <buffer><expr><TAB> pumvisible() ? "\<C-n>" : "\<TAB>"
Expand Down
1 change: 1 addition & 0 deletions vim/profiles/unite.vim
Expand Up @@ -36,6 +36,7 @@ nmap [unite]c <SID>(buffer-dir)
nmap [unite]C <SID>(buffer-file)
nmap [unite]b <SID>(buffer)
nmap [unite]B <SID>(all-buffer)
nmap <CR> <SID>(all-buffer)
nmap [unite]d <SID>(bookmark)
Expand Down

0 comments on commit d64422c

Please sign in to comment.