Created
April 23, 2017 04:54
-
-
Save tmd45/4b6ab999f8b1bad48ab3d6539853ebb5 to your computer and use it in GitHub Desktop.
vimrc for server
This file contains 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 nocompatible | |
sy on | |
set hidden | |
set autoread | |
set autoindent | |
set expandtab | |
set list | |
set listchars=eol:$,tab:^\ ,extends:>,precedes:< | |
set number | |
set shiftwidth=2 | |
set showmatch | |
set smartindent | |
set smarttab | |
set tabstop=4 | |
set whichwrap=b,s,h,l,<,>,[,] | |
set backspace=indent,eol,start | |
set scrolloff=5 | |
set textwidth=0 | |
set formatoptions=lmoq | |
set vb t_vb= | |
set showcmd | |
set showmode | |
set clipboard=unnamed | |
set cursorline | |
filetype on | |
filetype indent on | |
filetype plugin on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment