코딩 연습

spacemacs 배경 색 바꾸기 본문

잡다한 것들

spacemacs 배경 색 바꾸기

코딩아저씨 2020. 12. 14. 11:48
반응형

~/.spacemacs 파일을 열고 (custom-set-variables 라고 되어 있는 부분을 찾는다. 

그 부분을 아래와 같이 바꿔주면 된다. 

(custom-set-variables 
;; custom-set-variables was added by Custom. 
;; If you edit it by hand, you could mess it up, so be careful. 
;; Your init file should contain only one such instance. 
;; If there is more than one, they won't work right. 

'(spacemacs-theme-custom-colors 
  '((bg1 . "#001628") 
    (act1 . "#001628") 
    (bg2 . "#001628") 
    (comment-bg . "#001628"))) 

'(package-selected-packages

"#001628" 부분을 원하는 색으로 바꿔주면 된다. 

이와 관련된 자세한 내용은 github.com/nashamri/spacemacs-theme 에서 확인할 수 있다.

 

반응형


Comments