Last active
June 30, 2022 20:19
-
-
Save Beyarz/77f96fb579c3727141fbe505c4e360da to your computer and use it in GitHub Desktop.
vi ~/.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 | |
| filetype on | |
| filetype plugin on | |
| filetype indent on | |
| syntax on | |
| set cursorline | |
| set tabstop=2 | |
| set shiftwidth=2 | |
| set softtabstop=2 | |
| set smartindent | |
| set backspace=2 | |
| set autoindent | |
| set expandtab | |
| set incsearch | |
| set ignorecase | |
| set smartcase | |
| set showmatch | |
| set hlsearch | |
| set relativenumber |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment