본문 바로가기
컴퓨터 활용(한글, 오피스 등)/기타

Doom Emacs(둠 이맥스) 설치

by 3604 2026. 6. 11.
728x90

 


1단계: 마법 도구(Git Emacs) 다운받기

먼저 이맥스를 설치하기 위해 필요한 기본 도구 2가지를 컴퓨터에 깔아야 해요. 윈도우의 검색창에 PowerShell(파워쉘) 검색해서 실행한 , 아래 명령어를 줄씩 복사해서 붙여넣고 엔터(Enter) 누르세요.

·        Scoop 설치하기: 컴퓨터에 프로그램을 쉽게 깔아주는 도우미예요.

powershell

Set-ExecutionPolicy RemoteSigned -Scope CurrentUser

irm get.scoop.sh | iex

코드를 사용할 때는 주의가 필요합니다.

·        Git Emacs 설치하기: 이맥스를 데려올 낚싯대(Git) 진짜 메모장(Emacs) 설치해요.

powershell

scoop install git ripgrep fd

scoop bucket add extras

scoop install emacs

코드를 사용할 때는 주의가 필요합니다.


2단계: 이맥스 소스코드 데려오기

이제 진짜 이맥스의 설계도를 인터넷에서 우리 컴퓨터로 다운로드할 차례예요. 파워쉘 창에 그대로 명령어를 입력하세요.

·        설계도 복사하기: 인터넷에 있는 이맥스 파일을 컴퓨터의 비밀 폴더로 복사해 오는 명령이에요.

powershell

#git clone --depth 1 https://github.com/doomemacs/doomemacs ~/.config/emacs

git clone --depth 1 https://github.com/doomemacs/doomemacs $env:USERPROFILE\.config\emacs

코드를 사용할 때는 주의가 필요합니다.

 

 

[참고]  숨어있는 엉터리 폴더 강제로 지우기
Remove-Item -Recurse -Force -ErrorAction SilentlyContinue "~/.config/emacs", "$env:USERPROFILE\.configmacs"

 


3단계: 설치 마법 부리기 (진짜 설치)

설계도를 가져왔다면 이제 컴퓨터가 알아서 설치하도록 마법 명령어를 내려야 해요.

·        설치 명령 내리기: 아래 명령어를 입력하면 컴퓨터 화면에 영어 글자가 마구 지나가며 설치가 시작돼요.

powershell

PS C:\Users\bku\.config\emacs\bin> $env:EMACS="C:\Users\bku\scoop\shims\emacs.exe"

PS C:\Users\bku\.config\emacs\bin> .\doom.ps1 install

 

오류 발생
PS C:\Users\bku\.config\emacs\bin> .\doom.ps1 install
Package cl is deprecated
Installing Doom Emacs!
 
  Created ~/.doom.d/
  - Creating ~/.doom.d/init.el...
    Done!
  - Creating ~/.doom.d/config.el...
    Done!
  - Creating ~/.doom.d/packages.el...
    Done!
Generate an envvar file? (see `doom help env` for details) (y or n) y
> Generating envvars file
   Generated c:/Users/bku/.config/emacs/.local/env
> Deploying commit-msg and pre-push git hooks
    Created c:/Users/bku/.config/emacs/.git/hooks/commit-msg
    Created c:/Users/bku/.config/emacs/.git/hooks/pre-push
! ~/.emacs file detected. Delete it or Emacs won't load Doom correctly!
C:\Users\bku\scoop\apps\emacs\current\bin\emacs.exe: Write error to standard output: No error
해결 방법 Sync
PS C:\Users\bku\scoop\shims> Test-Path $HOME\.emacs
False
PS C:\Users\bku\scoop\shims> cd $HOME\.config\emacs\bin
PS C:\Users\bku\.config\emacs\bin> .\doom.ps1 sync

 

 

코드를 사용할 때는 주의가 필요합니다.

 

·        질문 답변하기: 설치 중간에 영어로 질문이 나오면 키보드로 y 누르고 엔터 치면 돼요. (2 정도 물어봅니다.)

 

[참고] 환경변수 설정 확인

 

 
   

 


4단계: 이맥스 실행하기

모든 설치가 끝났습니다! 이제 멋진 메모장을 켜볼까요?

·        실행하기: 윈도우 시작 메뉴나 바탕화면에 새로 생긴 Emacs 아이콘을 클릭해서 실행하세요.

·        짜잔!: 처음에 때는 조금 시간이 걸릴 있지만, 잠시 기다리면 검은색의 아주 멋진 이맥스 화면이 나타납니다.

728x90