반응형

http://springy.tistory.com/735


sudo vi /usr/share/vim/vimrc


http://springy.tistory.com/735

set ai                  " auto indenting

set history=100         " keep 100 lines of history

set ruler               " show the cursor position

syntax on               " syntax highlighting

set hlsearch            " highlight the last searched term

filetype plugin on      " use the file type plugins


" When editing a file, always jump to the last cursor position

autocmd BufReadPost *

\ if ! exists("g:leave_my_cursor_position_alone") |

\ if line("'\"") > 0 && line ("'\"") <= line("$") |

\ exe "normal g'\"" |

\ endif |

\ endif


반응형

'[Mac]' 카테고리의 다른 글

ssh 접속이 느릴 때  (0) 2016.11.16
맥에서 ls color 바꾸기  (0) 2015.06.24
Posted by FeliZ_하늘..
,

RxJava

[Java] 2016. 2. 23. 14:28
반응형
maven dependency 추가


테스트 클래스


결과


반응형

'[Java]' 카테고리의 다른 글

java 에서 숫자의 자릿수 알아내기  (1) 2018.01.20
remote visual vm  (0) 2016.12.18
BigInteger 최대공약수 gcd 최소공배수 lcm 구하기  (0) 2016.02.22
java 로 클립보드 사용하기  (0) 2015.10.30
java 로 동영상 처리  (0) 2015.10.28
Posted by FeliZ_하늘..
,
반응형
반응형

'[Java]' 카테고리의 다른 글

remote visual vm  (0) 2016.12.18
RxJava  (0) 2016.02.23
java 로 클립보드 사용하기  (0) 2015.10.30
java 로 동영상 처리  (0) 2015.10.28
java 에서 외부 프로세스 실행하기  (0) 2015.09.08
Posted by FeliZ_하늘..
,