forked from huxiaoxu2019/vimer3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdot-vimrc
234 lines (177 loc) · 7.37 KB
/
dot-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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
" The following are examples of different formats supported.
" Keep Plugin commands between vundle#begin/end.
" plugin on GitHub repo
" Plugin 'tpope/vim-fugitive'
" plugin from http://vim-scripts.org/vim/scripts.html
" Plugin 'L9'
" Git plugin not hosted on GitHub
" Plugin 'git://git.wincent.com/command-t.git'
" git repos on your local machine (i.e. when working on your own plugin)
" Plugin 'file:///home/gmarik/path/to/plugin'
" The sparkup vim script is in a subdirectory of this repo called vim.
" Pass the path to set the runtimepath properly.
" Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
" Install L9 and avoid a Naming conflict if you've already installed a
" different version somewhere else.
" Plugin 'ascenator/L9', {'name': 'newL9'}
" BufExplorer Plugin
Plugin 'bufexplorer.zip'
" The NERD Tree Plutin
Plugin 'The-NERD-tree'
" Fuzzy file, buffer, mru, tag, etc finder
Plugin 'kien/ctrlp.vim'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
" To ignore plugin indent changes, instead use:
"filetype plugin on
"
" Brief help
" :PluginList - lists configured plugins
" :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate
" :PluginSearch foo - searches for foo; append `!` to refresh local cache
" :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal
"
" see :h vundle for more details or wiki for FAQ
" Put your non-Plugin stuff after this line
" ========
" 插件设置
" ========
" BufExplorer Settings
map <C-H> :BufExplorer<CR>
" The NERD Tree Settings
map <C-K> :NERDTreeToggle<CR>
map <C-F> <C-W>h
" autocmd VimEnter * nested :NERDTreeToggle
" ==========================================================
" 基础设置
" 参考自:https://www.ruanyifeng.com/blog/2018/09/vimrc.html
" ==========================================================
" 打开语法高亮。自动识别代码,使用多种颜色显示
syntax on
" 在底部显示,当前处于命令模式还是插入模式
set showmode
" 使用 utf-8 编码
set encoding=utf-8
" 启用256色
set t_Co=256
" 开启文件类型检查,并且载入与该类型对应的缩进规则
" 比如,如果编辑的是.py文件,Vim 就是会找 Python 的缩进规则~/.vim/indent/python.vim
" filetype indent on
" ========
" 缩进设置
" ========
" 按下回车键后,下一行的缩进会自动跟上一行的缩进保持一致
set autoindent
" 按下 Tab 键时,Vim 显示的空格数
set tabstop=4
" 在文本上按下>>(增加一级缩进)、<<(取消一级缩进)或者==(取消全部缩进)时,每一级的字符数
set shiftwidth=4
" 由于 Tab 键在不同的编辑器缩进不一致,该设置自动将 Tab 转为空格
set expandtab
" Tab 转为多少个空格
set softtabstop=4
" ========
" 外观设置
" ========
" 显示行号
set number
" 显示光标所在的当前行的行号,其他行都为相对于该行的相对行号
set relativenumber
" 光标所在的当前行高亮
" set cursorline
" 设置行宽,即一行显示多少个字符
" set textwidth=80
" 自动折行,即太长的行分成几行显示
set wrap
" 关闭自动折行
" set nowrap
" 只有遇到指定的符号(比如空格、连词号和其他标点符号),才发生折行。也就是说,不会在单词内部折行
set linebreak
" 指定折行处与编辑窗口的右边缘之间空出的字符数
" set wrapmargin=2
" 垂直滚动时,光标距离顶部/底部的位置(单位:行)
" set scrolloff=5
" 水平滚动时,光标距离行首或行尾的位置(单位:字符)。该配置在不折行时比较有用
" set sidescrolloff=15
" 是否显示状态栏。0 表示不显示,1 表示只在多窗口时显示,2 表示显示
set laststatus=2
set statusline=%F%m%r%h%w\ [POS=%l,%v][%p%%]\ %{strftime(\"%d/%m/%y\ -\ %H:%M\")}
" 在状态栏显示光标的当前位置(位于哪一行哪一列)
" set ruler
" ========
" 搜索设置
" ========
" 光标遇到圆括号、方括号、大括号时,自动高亮对应的另一个圆括号、方括号和大括号
" set showmatch
" 搜索时,高亮显示匹配结果
set hlsearch
" 输入搜索模式时,每输入一个字符,就自动跳到第一个匹配的结果
set incsearch
" 搜索时忽略大小写
set ignorecase
" 如果同时打开了ignorecase,那么对于只有一个大写字母的搜索词,将大小写敏感;其他情况都是大小写不敏感
" 比如,搜索Test时,将不匹配test;搜索test时,将匹配Test
" set smartcase
" ========
" 编辑设置
" ========
" 打开英语单词的拼写检查
" set spell spelllang=en_us
" 不创建备份文件。默认情况下,文件保存时,会额外创建一个备份文件
" 它的文件名是在原文件名的末尾,再添加一个波浪号(〜)
" set nobackup
" 不创建交换文件。交换文件主要用于系统崩溃时恢复文件,文件名的开头是.、结尾是.swp
" set noswapfile
" 保留撤销历史
"
" Vim 会在编辑时保存操作历史,用来供用户撤消更改
" 默认情况下,操作记录只在本次编辑时有效,一旦编辑结束、文件关闭,操作历史就消失了
"
" 打开这个设置,可以在文件关闭后,操作记录保留在一个文件里面,继续存在
" 这意味着,重新打开一个文件,可以撤销上一次编辑时的操作。撤消文件是跟原文件保存在一起的隐藏文件,文件名以.un~开头
set undofile
" 设置备份文件、交换文件、操作历史文件的保存位置
" 结尾的//表示生成的文件名带有绝对路径,路径中用%替换目录分隔符,这样可以防止文件重名
set backupdir=~/.vim/.backup/
set directory=~/.vim/.swp/
set undodir=~/.vim/.undo/
" 自动切换工作目录。这主要用在一个 Vim 会话之中打开多个文件的情况,默认的工作目录是打开的第一个文件的目录。
" 该配置可以将工作目录自动切换到,正在编辑的文件的目录
set autochdir
" 出错时,不要发出响声
set noerrorbells
" 出错时,发出视觉提示,通常是屏幕闪烁
" set visualbell
" Vim 需要记住多少次历史操作
set history=1000
" 打开文件监视。如果在编辑过程中文件发生外部改变(比如被别的编辑器编辑了),就会发出提示
set autoread
" 如果行尾有多余的空格(包括 Tab 键),该配置将让这些空格显示成可见的小方块
" set listchars=tab:»■,trail:■
" set list
" 命令模式下,底部操作指令按下 Tab 键自动补全。
" 第一次按下 Tab,会显示所有匹配的操作指令的清单;第二次按下 Tab,会依次选择各个指令
set wildmenu
set wildmode=longest:list,full
" 禁止使用上下左右键
nnoremap <Up> :echomsg "Use k"<cr>
nnoremap <Down> :echomsg "Use j"<cr>
nnoremap <Left> :echomsg "Use h"<cr>
nnoremap <Right> :echomsg "Use l"<cr>
" 复制
map "+y :w !pbcopy<CR><CR>
" ========
" 常用文档
" ========
"
" autocmd: http://vimcdoc.sourceforge.net/doc/autocmd.html