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
- 빅세타
- one-to-one
- 배열 섞기
- Big Theta
- 빅오메가
- 빅오 표기법
- Big Omega
- 이진 탐색
- matrix fo a linear transformation
- matrix trnasformations
- solutions of matrix equation
- 일차변환
- Big-Oh 예제
- nonhomogeneous linear system
- NumPy
- 재귀함수
- 알고리즘 분석의 실례
- Big-O 예제
- Big-Oh notation
- python
- linear dependence
- 코틀린 Hello World!
- itertools
- 랜덤 순서 배열
- 코틀린 시작하기
- recursive algorithms
- trivial solution
- matrix-vector product
- homogeneous linear system
- nontrivial solution
Archives
- Today
- Total
코딩 연습
spacevim - colorscheme 바꾸기 본문
반응형
먼저 원하는 colorscheme 파일을 다운로드 받아서 ~/.SpaceVim.d/colors 디렉토리로 옮긴다.
그리고 ~/.SpaceVim.d 디렉토리 아래에 있는 init.toml 파일을 다음과 같이 수정한다.
먼저 파일의 마지막 부분에 다음을 추가한다.
[[layers]] name = 'colorscheme"
그리고 위 쪽의 [options] 부분에서 colorscheme 을 바꿔주면 된다.
[options] colorscheme = "molokai"
혹은 다음과 같이 custom_plugins 형태로 colorscheme 을 추가할 수도 있다.
역시 init.toml 에 다음과 같이 추가한다.
(여기서는 github.com/drewtempelmeyer/palenight.vim 에서 제공하는 palenight 을 추가해 보겠다.)
[[custom_plugins]]
name = "drewtempelmeyer/palenight.vim"
merged = 0
이 경우에도 [options] 부분에서 colorscheme 을 설치한 것으로 바꿔줘야 한다.
colorscheme = "palenight"
palenight 으로 바뀐 spacevim 에서 init.toml 파일을 열면 다음과 같이 보인다.
반응형
'잡다한 것들' 카테고리의 다른 글
mathjax 혹은 katex - 박스 안에 텍스트 넣기 (0) | 2020.12.14 |
---|---|
맥 - VScode 에서 vim plugin 사용시 키 연속입력이 안되는 문제 (2) | 2020.12.14 |
spacemacs - indent width 4로 설정하고, 줄번호 표시해주기 (0) | 2020.12.14 |
맥 - MacVim 에서 줄간격 조정하는 방법 (0) | 2020.12.14 |
맥 - MacVim 종료 후 iterm2 로 포커스 복귀 (0) | 2020.12.14 |
Comments