vim
Vim/Neovim 관련 메모와 설정 조각을 모아두는 네임스페이스 인덱스.
Summary
- 전통적인
vim설정 조각과nvim관련 CLI 참조를 함께 정리한다.
Pages
.vimrc
if has("syntax")
syntax on
endif
set hlsearch
set nu
set autoindent
set ts=4
set sts=4
set laststatus=2
set shiftwidth=4
set showmatch
set smartcase
set smarttab
set smartindent
set ruler
set fileencodings=utf8,euc-k
History
- codex:: 2026-07-12 Added nvim page link and normalized vim namespace index markup.