Last active
August 7, 2023 02:08
-
-
Save Beomi/0bbf4c51666f1608cb53c3d3d1d0a958 to your computer and use it in GitHub Desktop.
기본적인 VIM용 세팅
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 backspace=2 | |
set autoindent | |
set smartindent | |
set expandtab | |
set et | |
set tabstop=4 | |
set shiftwidth=4 | |
set showmatch | |
set ignorecase | |
set incsearch | |
set title | |
set nu | |
set enc=UTF-8 | |
set fileencodings=UTF-8 | |
syntax on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment