Skip to content

Commit d0c98ed

Browse files
committed
Windowsで日本語入力でコミットしてみる
1 parent 360919a commit d0c98ed

File tree

2 files changed

+11
-20
lines changed

2 files changed

+11
-20
lines changed

.gitconfig

+10-15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2+
# pushInsteadOf = git://github.com/
3+
# pushInsteadOf = https://github.com/
4+
#
5+
#[credential]
6+
# helper = wincred
17

28
[user]
39
name = rbtnn
@@ -19,12 +25,10 @@
1925
ci=commit
2026
co=checkout
2127
ls=ls-files
22-
lg=log --pretty=\"format:%C(yellow)%h %C(green)%cd %C(reset)%s\" --date=iso
28+
lg=log -10 --pretty=\"format:%C(yellow)%h %C(green)%cd %C(reset)%s\" --date=iso
2329
po=push -u origin
2430
st=status
2531
fu=fetch upstream
26-
mumr=merge upstream/master
27-
mumn=merge upstream/main
2832

2933
[color]
3034
diff = true
@@ -41,15 +45,6 @@
4145
[include]
4246
path = ~/.gitconfig.local
4347

44-
45-
# pushInsteadOf = git://github.com/
46-
# pushInsteadOf = https://github.com/
47-
#
48-
#[credential]
49-
# helper = wincred
50-
51-
[filter "lfs"]
52-
required = true
53-
clean = git-lfs clean -- %f
54-
smudge = git-lfs smudge -- %f
55-
process = git-lfs filter-process
48+
[pager]
49+
log = false
50+
diff = false

vim/settings/autocmds.vim

+1-5
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,11 @@ augroup END
1414
augroup vimrc-autocmds
1515
autocmd!
1616
" Delete unused commands, because it's an obstacle on cmdline-completion.
17-
autocmd CmdlineEnter *
17+
autocmd CmdlineEnter *
1818
\ : for s:cmdname in s:delcmds
1919
\ | execute printf('silent! delcommand %s', s:cmdname)
2020
\ | endfor
2121
\ | unlet s:cmdname
22-
autocmd InsertEnter *
23-
\ : set noimdisable
24-
autocmd InsertLeave,VimEnter *
25-
\ : set imdisable
2622
autocmd FileType help :setlocal colorcolumn=78
2723
augroup END
2824

0 commit comments

Comments
 (0)