Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kn1cht committed Aug 3, 2016
1 parent 689b3a3 commit cb94628
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .vimrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
colorscheme desert
highlight LineNr ctermfg=darkyellow
autocmd ColorScheme * highlight LineNr ctermfg=darkyellow
colorscheme hybrid
syntax on

set background=dark
Expand Down Expand Up @@ -61,7 +61,7 @@ command! C call s:C()
nmap <F5> :C<CR>
function! s:C()
:w
:!g++ --std=c++11 -O2 -Wall % -o X
:!g++ --std=c++11 -O2 -Wall % -o x
:endfunction
"---------------------------------------------------------------------------

Expand Down
3 changes: 2 additions & 1 deletion .zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ setopt hist_reduce_blanks
setopt extended_glob

alias vv="g++ --std=c++11 -O2 -Wall"
alias ls='ls -G'
alias ls='ls -Ga'
alias sl='ls'
alias mkdir='mkdir -p'
alias sudo='sudo '
# C で標準出力をクリップボードにコピーする
Expand Down

0 comments on commit cb94628

Please sign in to comment.