Last active
December 28, 2015 13:38
-
-
Save FloorLamp/7508751 to your computer and use it in GitHub Desktop.
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 autoindent | |
| set expandtab | |
| set shiftwidth=4 | |
| set tabstop=4 | |
| set softtabstop=4 | |
| set backspace=indent,eol,start | |
| set autoread | |
| set ruler | |
| set laststatus=2 | |
| set showcmd | |
| set wildmenu | |
| set wildmode=list:longest,full | |
| set number | |
| set scrolloff=3 | |
| set showmode | |
| set visualbell | |
| set cursorline | |
| set ttyfast | |
| set ignorecase | |
| set smartcase | |
| set hlsearch | |
| set incsearch | |
| set showmatch | |
| set gdefault | |
| filetype plugin on | |
| filetype indent on | |
| nnoremap <CR> :noh<CR><CR> | |
| au BufRead,BufNewFile *.md set filetype=markdown |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment