Last active
August 11, 2025 05:55
-
-
Save dalguji/6d3f8e3242414a9fdacb to your computer and use it in GitHub Desktop.
~/.vimrc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" ========= 표시 관련 ========= | |
set number | |
set ruler | |
set wrap " 화면에서만 줄 접기 (실제 개행 X) | |
set linebreak " 단어 경계에서 접기 | |
set scrolloff=15 | |
" ========= 창 분할 ========= | |
set splitbelow | |
set splitright | |
set laststatus=2 | |
" ========= 검색 ========= | |
set ignorecase | |
set smartcase " 대문자 섞으면 대소문자 구분 | |
set incsearch " 입력 즉시 검색 미리보기 | |
set hlsearch " 검색 하이라이트 | |
" ========= 탭/들여쓰기 ========= | |
set expandtab | |
set tabstop=4 | |
set shiftwidth=4 | |
set softtabstop=4 | |
set shiftround | |
set autoindent | |
" set smartindent " 다양한 언어면 끄고, 파일타입 인덴터에 맡기는 걸 권장 | |
filetype plugin indent on | |
set hidden " 저장 전환 허용 + undo 보존에 유리 | |
syntax on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment