-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
67 lines (54 loc) · 977 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
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
59
60
61
62
63
64
65
66
67
set nocompatible
" view settings
colorscheme elflord
let g:rehash256=1
highlight Normal ctermbg=none
syntax on
set title
set ruler
set encoding=utf-8
set fileencoding=utf-8
set fileencodings=iso-2022-jp,euc-jp,utf-8,ucs-2,cp932,sjis
set number
set cursorline
set laststatus=2
set cmdheight=2
set showmatch
set helpheight=999
" cursor settings
set backspace=indent,eol,start
set whichwrap=b,s,h,l,<,>,[,]
set scrolloff=8
set sidescrolloff=16
set sidescroll=1
" file settings
set confirm
set hidden
set autoread
set nobackup
set noswapfile
" search/replace settings
set hlsearch
set incsearch
set ignorecase
set smartcase
set wrapscan
set gdefault
" tab/indent
set expandtab
set tabstop=2
set shiftwidth=2
set softtabstop=2
set autoindent
set smartindent
" other
set clipboard=unnamed,unnameplus
set mouse=a
set shellslash
" set iminsert=2
" command line settings
set wildmenu wildmode=list:longest,full
set history=1000
" beep
set visualbell t_vb=
set noerrorbells