How to use multiple Cursor or VSCode IDE by language

I’ve been using Cursor for a while and found it to be an excellent IDE. However, when working on projects that require multiple programming languages, I often experience performance issues with the IDE becoming sluggish. This reduces my productivity, so I’ve been searching for a way to use different IDE setups for each language. Using Profiles In Cursor(VSCode based IDE), you can use Profiles to apply different settings for each language. This method doesn’t involve using different settings for each language, but rather using different profiles for each language. ...

March 3, 2025 2 min

언어별로 여러 Cursor 또는 VSCode IDE 사용하는 방법

한동안 Cursor를 사용했고 이것이 훌륭한 IDE라고 생각한다. 하지만 여러 프로그래밍 언어가 필요한 프로젝트에서 작업할 때, 종종 IDE가 무거워지는 경우가 있었다. 이럴 때 생산성이 떨어져서 각 언어마다 다른 IDE 설정을 사용하는 방법을 찾고 있었다. Profile을 이용하는 방법 Cursor에서는 Profile을 이용해서 각 언어별로 다른 설정을 사용할 수 있다. 이 방법은 각 언어별로 다른 설정을 사용하는 것이 아니라, 각 언어별로 다른 프로필을 사용하는 것이다. cmd+shift+p 를 눌러서 >Profiles: New Profile... 를 선택하면 profile을 생성할 수 있다: ...

March 3, 2025 2 min

VS code에서 git bash 사용하기

Windows에서 Power shell이나 CMD로 작업하면 linux 명령어를 사용하기 불편하다. 그렇기 때문에 종종 git bash를 사용했는데 매번 git bash를 켜서 작업하는 것도 귀찮았다. Visual Studio Code에서 git bash를 기본 터미널로 설정하면 편하게 작업할 수 있을 것이다. 방법은 설정에서 사용자 정의 부분을 아래와 같이 덮어씌우면 된다. { "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe" } 이제 linux 명령어를 편하게 사용하면서 작업하자. Reference https://code.visualstudio.com/docs/editor/integrated-terminal

August 13, 2017 1 min