Tool
-
VSCode/GitLens - IntelliJ 형태의 annotate 보기Tool/VSCode&Cursor 2022. 10. 19. 08:14
Extensions 열기 GitLens — Git supercharged 설치 GitLens: Open Settings Hovers 변경 Hovers에서 AShow hovers for the current line option 변경 annotaion 확인 Dates & Times 설정 GitLens: Open Settings 에서 Dates & Times 클릭 Date format 설정 단축키 설정 단축 키 설정 화면 열기 단축키 설정 Annotation format 설정 File Blame 설정 GitLens: Toggle File Blame 열어보기 단축키로도 열어볼수도 있지만 아래와 같이 클릭 후 확인이 가능하다. (다시 누르면 닫힘) 참조) https://www.youtube.com/watch?v..
-
VSCode/단축키Tool/VSCode&Cursor 2022. 10. 12. 17:10
기본 ⇧ : Shift ⌃ : Controll ⌥ : Option ⌘ : Command Home : fn + ← End : fn + → Page Up : fn + ↑ Page Down : fn + ↓ 단축키 구분 맥 연결 키보드 맥 윈도우 Comment 코드 자동 정렬 Shift + Alt + F ⇧ + ⌥ + F import 정리 Ctrl + Alt + O ⌃ + ⌥ + O import 순서 & 불필요한 import 제거 여러행 선택 Shift + Alt + Drag ⇧ + ⌥ + Drag 마우스로 선택 지정 참조 이동 참조) https://zuyo.tistory.com/902 비주얼 스튜디오 코드(Visual Studio Code) 단축키 (Mac, Windows) 자주 사용하는 비주얼 스튜디오 코드..
-
VSCode/설치 및 설정Tool/VSCode&Cursor 2022. 10. 6. 14:30
Visual Studio Code Download 필자는 Apple Silicon 버전을 다운로드 https://code.visualstudio.com/download Download Visual Studio Code - Mac, Linux, Windows Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows. Download Visual Studio Code to experience a redefined code editor, optimized for building and debugging modern web and cloud applications. code.visualstudio.c..
-
IntelliJ + Gradle + Lombok + 테스트코드Tool/IntelliJ 2021. 4. 8. 15:58
안녕하세요, 건담아빠입니다. 이번 포스팅은 Lombok 라이브러리 설정입니다. 1. InterlliJ Lombok Plugins - File > Settings (Ctrl+Alt+S) > Plugins > "lombok" 검색 > Install > 재시작? (이미 설치되어 있어서 재시작 안함) 2. gradle 의존성 추가 - build.gradle implementation('org.projectlombok:lombok') 4. DTO 및 테스트 코드 작성 - dto 생성 package dto; import lombok.Getter; import lombok.RequiredArgsConstructor; @Getter @RequiredArgsConstructor public class HelloDto {..
-
IntelliJ + Github 연동Tool/IntelliJ 2021. 4. 1. 18:27
안녕하세요, 건담아빠입니다. 이번 포스팅은 깃허브 연동입니다. 1. Git설정 - 설치된 git.exe 설정 (C:\Program Files\Git\bin\git.exe) - GitHub 추가 - Add Account 누르면 브라우가 뜹니다. - Github 로그인 - Github 로그인 후 IDE 접속 권한을 부여합니다. - 로그인 후 아래 캡쳐 처럼 로그인 완료합니다. - Github에 프로젝트 공유합니다. - 프로젝트 생성 - add 및 commit을 해도 되나, Cancel하고 추가하는식으로 진행해 보겠습니다. - .gitignore 조정 후 Add # Package Files # *.jar *.war *.ear #Gradle temporary files target/ - Commit Direct..