Skip to content

Commit

Permalink
undotree/rot13/~/bin
Browse files Browse the repository at this point in the history
  • Loading branch information
kn1cht committed Feb 15, 2017
1 parent 15d5ef9 commit 191d70d
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 deletions.
17 changes: 16 additions & 1 deletion .vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ NeoBundleFetch 'Shougo/neobundle.vim'
NeoBundle 'Shougo/neocomplete.vim'
NeoBundle 'scrooloose/nerdtree'
NeoBundle 'Townk/vim-autoclose'
NeoBundle 'mbbill/undotree'
NeoBundle 'mattn/emmet-vim'
NeoBundle 'davidhalter/jedi-vim'

Expand Down Expand Up @@ -196,4 +197,18 @@ call NERDTreeHighlightFile('styl', 'cyan', 'none', 'cyan', '#151515')
call NERDTreeHighlightFile('css', 'cyan', 'none', 'cyan', '#151515')
call NERDTreeHighlightFile('rb', 'Red', 'none', 'red', '#151515')
call NERDTreeHighlightFile('js', 'Red', 'none', '#ffa500', '#151515')

""""""""""""""""""""""""""""""
" undotree Settings
" [?]でヘルプ。[¥],[u]でundo履歴
" http://vimblog.com/blog/2012/09/02/undotree-dot-vim-display-your-undo-history-in-a-graph/
" https://github.com/r1chelt/dotfiles/blob/master/.vimrc
""""""""""""""""""""""""""""""
nmap <Leader>u :UndotreeToggle<CR>
let g:undotree_SetFocusWhenToggle = 1
let g:undotree_SplitWidth = 35
let g:undotree_diffAutoOpen = 1
let g:undotree_diffpanelHeight = 25
let g:undotree_RelativeTimestamp = 1
let g:undotree_TreeNodeShape = '*'
let g:undotree_HighlightChangedText = 1
let g:undotree_HighlightSyntax = "UnderLined"
5 changes: 3 additions & 2 deletions .zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
HISTFILE=~/.histfile
HISTSIZE=1000
SAVEHIST=1000
bindkey -v
bindkey -e
# End of lines configured by zsh-newuser-install

# プロンプト
Expand Down Expand Up @@ -32,11 +32,12 @@ alias vi="vim"
alias ls='ls -Ga'
alias mkdir='mkdir -p'
alias sudo='sudo '
alias rot13='tr A-Za-z N-ZA-Mn-za-m'
# C で標準出力をクリップボードにコピーする
# mollifier delta blog : http://mollifier.hatenablog.com/entry/20100317/p1
alias -g C='| pbcopy'

export PATH=/opt/local/bin:/opt/local/sbin:$PATH
export PATH=/opt/local/bin:/opt/local/sbin:~/bin:$PATH
export PATH="$HOME/.rbenv/bin:$PATH"
export PATH="$PATH:"/Applications/microchip/xc8/v1.35/bin""
export PATH=$PATH:/usr/local/share/git-core/contrib/diff-highlight
Expand Down

0 comments on commit 191d70d

Please sign in to comment.