Skip to content

Commit d5e4d76

Browse files
author
Hideyuki Kikuma
committed
wip
1 parent a33c37c commit d5e4d76

File tree

8 files changed

+39
-16
lines changed

8 files changed

+39
-16
lines changed

.gitconfig

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,11 @@
2929
smudge = git media smudge %f
3030
[push]
3131
default = simple
32+
[filter "hawser"]
33+
clean = git hawser clean %f
34+
smudge = git hawser smudge %f
35+
required = true
36+
[filter "lfs"]
37+
clean = git lfs clean %f
38+
smudge = git lfs smudge %f
39+
required = true

.tigrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# show commit id
2-
set show-id = yes
2+
#set show-id = yes
33
set id-width = 12
44

55
set vertical-split = yes
66
set diff-context = 6
77

8+
#set ignore-space = all

.tmux.conf

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
#shell
2-
set-option default-shell /bin/zsh
3-
41
#Prefix
52
set -g prefix C-a
63
unbind-key C-b
@@ -60,10 +57,6 @@ bind k select-pane -U
6057
bind l select-pane -R
6158
bind -r s swap-pane -U
6259

63-
# mouse
64-
setw -g mode-mouse off
65-
66-
6760
#C-rで設定ファイルをリロード
6861
bind r source-file ~/.tmux.conf \; display "Reloaded!"
6962

.vrapperrc

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,26 +6,26 @@ set hlsearch
66
set regexsearch
77

88
"search
9-
noremap ,sr :SearchReferencesInProject<C-m>
9+
noremap ,sr :SearchReferencesInProject<CR>
1010

1111
" yank
1212
nnoremap yy yy
1313
nnoremap yv vawy
1414

1515
"move the cursor
16-
nnoremap gb :goToLastEditPosition<C-m>
17-
nnoremap gg :0<C-m>
16+
nnoremap gb :goToLastEditPosition<CR>
17+
nnoremap gg :0<CR>
1818

1919
"next member(fields or method)
20-
nnoremap ]] :GotoNextMember<C-m>
21-
nnoremap [[ :GotoPreviousMember<C-m>
20+
nnoremap ]] :GotoNextMember<CR>
21+
nnoremap [[ :GotoPreviousMember<CR>
2222

2323
" Open Declaration
24-
nnoremap ff :OpenEditor<C-m>
24+
nnoremap ff :OpenEditor<CR>
2525

2626
" refactor
27-
nnoremap ,r :RenameElement<C-m>
28-
"nnoremap ,rv :PromoteLocalVariable<C-m>
27+
nnoremap ,r :RenameElement<CR>
28+
"nnoremap ,rv :PromoteLocalVariable<CR>
2929

3030

3131
" define action

.zshrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,3 +96,8 @@ setopt hist_ignore_dups
9696
#
9797
[ -f ~/.zshrc.local ] && source ~/.zshrc.local
9898

99+
alias dl=docker ps -l -q
100+
101+
102+
PERL_MB_OPT="--install_base \"/Users/hideyuki.kikuma/perl5\""; export PERL_MB_OPT;
103+
PERL_MM_OPT="INSTALL_BASE=/Users/hideyuki.kikuma/perl5"; export PERL_MM_OPT;

Brewfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ install rbenv || true
3232
install ruby-build || true
3333
install libxml2 || true
3434
install mysql || true
35+
install rsense || true
36+
install ctags || true
3537

3638
#for powerline
3739
tap sanemat/font

vim/.vim/indent/ruby.vim

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
setlocal tabstop=2 shiftwidth=2 softtabstop=2

vim/.vimrc

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,15 @@ NeoBundle 'itchyny/lightline.vim'
2929
NeoBundle 'scrooloose/nerdtree'
3030
NeoBundle 'tpope/vim-endwise'
3131
NeoBundle 'tomtom/tcomment_vim'
32+
NeoBundle 'scrooloose/syntastic'
33+
NeoBundle 'Shougo/neocomplete.vim'
34+
NeoBundle 'marcus/rsense'
35+
NeoBundle 'supermomonga/neocomplete-rsense.vim'
36+
NeoBundle 'thinca/vim-ref'
37+
NeoBundle 'yuku-t/vim-ref-ri'
38+
NeoBundle 'szw/vim-tags'
39+
NeoBundle 'wakatime/vim-wakatime'
40+
3241

3342
filetype plugin indent on " required!
3443
"call pathogen#runtime_append_all_bundles()
@@ -101,6 +110,10 @@ au BufRead,BufNewFile *.pm set filetype=perl
101110
au BufNewFile,BufRead *.psgi set filetype=perl
102111

103112

113+
let g:syntastic_mode_map = { 'mode': 'passive',
114+
\ 'active_filetypes': ['ruby'] }
115+
let g:syntastic_ruby_checkers = ['rubocop']
116+
104117
"##################################
105118
" key mapping
106119
"##################################

0 commit comments

Comments
 (0)