[VSCODE] 환경설정 / 이슈

강상훈·2023년 1월 30일
0

Settings

목록 보기
1/5

Omnisharp.json(C#, Unity)

  • 코드 포맷팅 스타일
  • omnisharp.json 파일 생성 -> 프로젝트 루트 폴더에 추가
{
	"FormattingOptions": {
	"NewLinesForBracesInLambdaExpressionBody": false,
	"NewLinesForBracesInAnonymousMethods": false,
	"NewLinesForBracesInAnonymousTypes": false,
	"NewLinesForBracesInControlBlocks": false,
	"NewLinesForBracesInTypes": false,
	"NewLinesForBracesInMethods": false,
	"NewLinesForBracesInProperties": false,
	"NewLinesForBracesInObjectCollectionArrayInitializers": false,
	"NewLinesForBracesInAccessors": false,
	"NewLineForElse": false,
	"NewLineForCatch": false,
	"NewLineForFinally": false
	}
}

에디터 한글 입력이 씹힐 때

  • cmd + shift + p
  • 표시 언어 설정을 한글 <-> 영어 바꿔준다.
  • 한글로 바꿔도 씹힐 때가 있는데 다시 영어로 바꿔주면 잘 된다.

Vscode 주석 색 변경

settings.json

"editor.tokenColorCustomizations": {
    "comments": "#d4922f"
},
profile
https://totohoon01.tistory.com/

0개의 댓글