-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathexrc
More file actions
47 lines (36 loc) · 898 Bytes
/
exrc
File metadata and controls
47 lines (36 loc) · 898 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
38
39
40
41
42
43
44
45
46
47
" exrc for wasavi
" Themes:
" - blight
" - charcoal
" - matrix
" - solarized
" - solarized_dark
set theme=charcoal
" Set PEP8-compliant indentation https://realpython.com/vim-and-python-a-match-made-in-heaven/
set tabstop=4
set shiftwidth=4
set expandtab
set autoindent
set history=100
set undolevels=100
" Underline the line the cursor is on
set cursorline
" use hybrid (absolute and relative) numbers
set number relativenumber
" Ignore case when searching
set ignorecase
" When searching try to be smart about cases
set smartcase
" Makes search act like search in modern browsers
set incsearch
" Show matching brackets when text indicator is over them
set showmatch
" No annoying sound on errors http://vim.wikia.com/wiki/Disable_beeping
set noerrorbells
set novisualbell
set nolaunchbell
set bellvolume=0
" Increase text area size
set lines=300
set lines=400
set nosyncsize