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
- itertools
- NumPy
- Big Theta
- 랜덤 순서 배열
- trivial solution
- Big-Oh notation
- 코틀린 Hello World!
- 이진 탐색
- Big Omega
- 빅오 표기법
- nonhomogeneous linear system
- 배열 섞기
- matrix fo a linear transformation
- 빅세타
- nontrivial solution
- matrix trnasformations
- one-to-one
- 코틀린 시작하기
- Big-O 예제
- 일차변환
- matrix-vector product
- homogeneous linear system
- 빅오메가
- recursive algorithms
- Big-Oh 예제
- 알고리즘 분석의 실례
- 재귀함수
- python
- solutions of matrix equation
- linear dependence
Archives
- Today
- Total
코딩 연습
spacevim 에서 indent width 설정 본문
반응형
spacevim 을 설치하고 나면 기본 indent width 가 2 로 설정되어 있다.
이 설정을 바꾸려면 .SpaceVim.d 디렉토리에 있는 init.toml 파일을 열어서
[options] 아래쪽에 다음을 추가해 주면 된다.
default_indent = 4
이렇게 하면 indent width 가 4로 되는 것을 확인할 수 있다.
그런데 이상하게 중괄호를 열면 자동으로 닫힘 중괄호가 생기고, 이 상태에서 엔터키를 누르면 자동으로 indent 가 되지 않는다. 이것을 고치려면
[[layers]]
name = 'autocomplete'
밑에 다음을 추가해 주면 된다.
auto-completion-return-key-behavior = "smart"
반응형
'잡다한 것들' 카테고리의 다른 글
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 |
spacemacs 배경 색 바꾸기 (0) | 2020.12.14 |
Comments