-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdot_vimrc
More file actions
56 lines (43 loc) · 787 Bytes
/
dot_vimrc
File metadata and controls
56 lines (43 loc) · 787 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
48
49
50
51
52
53
54
55
56
set nocompatible
scriptencoding utf-8
set encoding=utf-8
set autoindent
set backspace=indent,eol,start
set showmatch
set expandtab
set shiftround
set shiftwidth=2
set softtabstop=2
set tabstop=2
set hlsearch
set viminfo=""
set visualbell t_vb="<Esc>|1f"
set noerrorbells
set nowrap
set noswapfile
set autowrite
set noshowmode
" set number
" set relativenumber
set laststatus=2
set ruler
set showcmd
set incsearch
set wildmenu
" set cursorline
" set cursorcolumn
set formatoptions+=j
set display=lastline,uhex
if exists('+breakindent')
set breakindent showbreak=>\
endif
set linebreak
hi Error ctermbg=DarkRed
hi SpellBad ctermbg=DarkRed
if filereadable(findfile("~/.local.vimrc"))
source ~/.local.vimrc
endif
if v:version >= 800
packloadall
endif
silent! helptags ALL