Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- 알고리즘 분석의 실례
- linear dependence
- 빅오 표기법
- python
- Big Theta
- 일차변환
- nonhomogeneous linear system
- 코틀린 Hello World!
- matrix-vector product
- matrix trnasformations
- Big-Oh notation
- Big Omega
- 배열 섞기
- 빅오메가
- matrix fo a linear transformation
- Big-O 예제
- solutions of matrix equation
- recursive algorithms
- Big-Oh 예제
- nontrivial solution
- one-to-one
- trivial solution
- itertools
- 랜덤 순서 배열
- NumPy
- homogeneous linear system
- 이진 탐색
- 빅세타
- 재귀함수
- 코틀린 시작하기
Archives
- Today
- Total
코딩 연습
spacemacs 배경 색 바꾸기 본문
반응형
~/.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 에서 확인할 수 있다.
반응형
'잡다한 것들' 카테고리의 다른 글
spacevim - colorscheme 바꾸기 (0) | 2020.12.14 |
---|---|
spacemacs - indent width 4로 설정하고, 줄번호 표시해주기 (0) | 2020.12.14 |
맥 - MacVim 에서 줄간격 조정하는 방법 (0) | 2020.12.14 |
맥 - MacVim 종료 후 iterm2 로 포커스 복귀 (0) | 2020.12.14 |
spacevim 에서 indent width 설정 (0) | 2020.12.14 |
Comments