Last active
February 3, 2017 13:21
-
-
Save 64lines/96ccd1857ff6dea29757 to your computer and use it in GitHub Desktop.
VIM Configuration 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 elflord | |
| 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