-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimrc_backup.txt
58 lines (41 loc) · 894 Bytes
/
vimrc_backup.txt
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
48
49
50
51
52
53
54
55
56
57
58
call plug#begin()
Plug 'JuliaEditorSupport/julia-vim'
Plug 'ziglang/zig.vim'
call plug#end()
set guifont=Hack:16
" Turn on the Wild menu
set wildmenu
" Always show current position
set ruler
set number
" Height of the command bar
set cmdheight=1
" No annoying sound on errors
set noerrorbells
set novisualbell
set t_vb=
set tm=500
" Enable syntax highlighting
syntax enable
set background=dark
" Set utf8 as standard encoding and en_US as the standard language
set encoding=utf8
" Turn backup off, since most stuff is in SVN, git etc. anyway...
set nobackup
set nowb
set noswapfile
" Use spaces instead of tabs
set expandtab
" Be smart when using tabs ;)
set smarttab
" 1 tab == 4 spaces
set shiftwidth=4
set tabstop=4
" Linebreak on 500 characters
set lbr
set tw=500
set ai "Auto indent
set si "Smart indent
set wrap "Wrap lines
" Always show the status line
set laststatus=2