Created
November 13, 2019 14:52
-
-
Save cybertramp/81f1cd56580cb8d01cf4894139744144 to your computer and use it in GitHub Desktop.
my vimrc file
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
| " This file for paran_son@outlook.com 's vimrc setting file | |
| " Last updated 19.11.13 | |
| if has("syntax") | |
| syntax on | |
| endif | |
| set autoindent " auto indent | |
| set cindent " for c language indent | |
| set nu " linenumber | |
| set ts=4 " tab width | |
| set shiftwidth=4 " autoindent width | |
| set paste! " paste stair-statement prevent | |
| set title " status bar set title | |
| set smarttab | |
| set smartindent | |
| filetype on " filetype syntax highlight |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment