EMACS - 환경설정(.emacs) 편집




< 편집화면의 Background Color 및 글자색 변경하기 >
M-X customize-face "Enter" default "Enter"
* Foreground (글자색) => White 또는 원하는 색을 선택
* Background (배경색) => Black 또는 원하는 색을 선택

< .emacs 파일 편집 >
;; 한글 입력 / 한-영변환키 "Shift + Space bar"
(setq default-input-method "korean-hangul")


;; utf-8 직원
(prefer-coding-system 'utf-8)


;; 한글 파일명 읽기, 저장하기 문제 해결
(set-file-name-coding-system 'cp949-dos)

;; 처음 실행시 첫 화면(튜토리얼 및 안내) 비활성화
(setq inhibit-startup-message t)

;; 디폴트 작업 디렉토리 설정
(setq default-directory "D:/dir_path/")

;; Cursor 타입설정
(setq-default cursor-type 'bar)     ;; │ 타입 (가장 일반적임)
;; (setq-default cursor-type 'box)   ;; ▌타입
;; (setq-default cursor-type 'hbar)  ;; _ 타입

댓글

이 블로그의 인기 게시물

EMACS - 파일 열기, 저장, 도움말

EMACS - 검색 및 바꾸기

EMACS, CLISP, SLIME 설치