-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvimrc
More file actions
38 lines (32 loc) · 693 Bytes
/
vimrc
File metadata and controls
38 lines (32 loc) · 693 Bytes
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
26
27
28
29
30
31
32
33
34
35
36
37
" General
"""""""""
" Sets how many lines of history VIM has to remeber.
set history=500
" Set to auto read when a file is changed from the outside.
set autoread
" user interface
""""""""""""""""
" always show current position
set ruler
" Ignore case when searching
set ignorecase
" Highlight search results
set hlsearch
" Show matching brackets
set showmatch
" sounds off
set noerrorbells
set novisualbell
" Colors and Fonts
""""""""""""""""""
" utf8 as standard encoding
set encoding=utf8
" User unix as a standard file type
set ffs=unix,dos,mac
" Text, Tab and Indent
""""""""""""""""""""""
" Use spaces instead of tabs
set expandtab
" 1 tab = 4 spaces
set shiftwidth=4
set tabstop=4