Last active
August 5, 2016 05:03
-
-
Save 64lines/5e1f8862aa31337cb288 to your computer and use it in GitHub Desktop.
Basic .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
| syntax on | |
| set nu " Enable number lines" | |
| set showcmd | |
| set incsearch | |
| set hlsearch | |
| set autoindent | |
| " Source a global configuration file if available | |
| if filereadable("/etc/vim/vimrc.local") | |
| source /etc/vim/vimrc.local | |
| endif | |
| set tabstop=4 | |
| set shiftwidth=4 | |
| set expandtab | |
| colorscheme desert | |
| set wrap! | |
| set path=$PWD/** | |
| set pastetoggle=<F2> | |
| set backspace=indent,eol,start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment