-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
25 lines (24 loc) · 783 Bytes
/
.vimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
" Designed for Vim 8+
set nocompatible
set encoding=utf-8
filetype off
syntax on " Turn on syntax highlighting
set showmatch " Show matching brackets
set ignorecase " Do case insensitive matching
set incsearch " Show partial matches for a search phrase
set number " Show numbers
set undolevels=999 " Lots of these
set hls " Highlight Search
set tabstop=2 " Tab size
set shiftwidth=2 " Indentation size
set softtabstop=2 " Tabs/Spaces interop
set expandtab " Expands tab to spaces
set nomodeline " Disable as a security precaution
set smartindent
set smarttab
set relativenumber " Enable relative numbers
set icon
set hlsearch " Highlight search hits
set incsearch
set linebreak
set ttyfast " Faster scrolling