Last active
May 21, 2020 08:37
-
-
Save catbaron0/1519496edf25dde569a2e552719b7db9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" 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' | |
" Plugin 'Valloric/YouCompleteMe' | |
Plugin 'nathanaelkane/vim-indent-guides' | |
Plugin 'w0rp/ale' | |
Plugin 'airblade/vim-gitgutter' | |
Plugin 'jacoborus/tender.vim' | |
Plugin 'joshdick/onedark.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'} | |
" 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 | |
" indent_guides | |
let g:indent_guides_enable_on_vim_startup = 1 "添加行,vim启动时启用 | |
let g:indent_guides_start_level = 1 "添加行,开始显示对齐线的缩进级别 | |
let g:indent_guides_guide_size = 1 "添加行,对齐线的宽度,(1字符) | |
let g:indent_guides_tab_guides = 0 | |
"ale | |
let g:ale_linters = {'python': ['pyflakes', ], 'reStructuredText': ['rstcheck']} | |
"let g:ale_linters = {'python': ['pyflakes', 'pylint'], 'reStructuredText': ['rstcheck']} | |
"始终开启标志列 | |
let g:ale_sign_column_always = 1 | |
let g:ale_set_highlights = 0 | |
"自定义error和warning图标 | |
let g:ale_sign_error = '✗' | |
let g:ale_sign_warning = '⚡' | |
"在vim自带的状态栏中整合ale | |
let g:ale_statusline_format = ['✗ %d', '⚡ %d', '✔ OK'] | |
"显示Linter名称,出错或警告等相关信息 | |
let g:ale_echo_msg_error_str = 'E' | |
let g:ale_echo_msg_warning_str = 'W' | |
let g:ale_echo_msg_format = '[%linter%] %s [%severity%]' | |
"普通模式下,sp前往上一个错误或警告,sn前往下一个错误或警告 | |
nmap sp <Plug>(ale_previous_wrap) | |
nmap sn <Plug>(ale_next_wrap) | |
"<Leader>s触发/关闭语法检查 | |
nmap <Leader>s :ALEToggle<CR> | |
"<Leader>d查看错误或警告的详细信息 | |
nmap <Leader>d :ALEDetail<CR> | |
let g:ale_virtualenv_dir_names = [] | |
" YCM | |
let g:ycm_python_interpreter_path = '' | |
let g:ycm_python_sys_path = [] | |
let g:ycm_extra_conf_vim_data = [ | |
\ 'g:ycm_python_interpreter_path', | |
\ 'g:ycm_python_sys_path' | |
\] | |
let g:ycm_global_ycm_extra_conf = '~/global_extra_conf.py' | |
" gitgutter | |
set updatetime=100 | |
:augroup numbertoggle | |
: autocmd! | |
: autocmd BufEnter,FocusGained,InsertLeave * set relativenumber | |
: autocmd BufLeave,FocusLost,InsertEnter * set norelativenumber | |
:augroup END | |
" 打开语法高亮。自动识别代码,使用多种颜色显示。 | |
syntax on | |
colorscheme onedark | |
" hi LineNr guibg=darkgrey ctermbg=darkgrey guifg=white ctermfg=grey | |
" 不与 Vi 兼容(采用 Vim 自己的操作命令)。 | |
set nocompatible " be iMproved, required | |
filetype off " required | |
" 使用 utf-8 编码。 | |
set encoding=utf-8 | |
" 在底部显示,当前处于命令模式还是插入模式。 | |
set showmode | |
" 命令模式下,在底部显示,当前键入的指令。比如,键入的指令是`2y3d`,那么底部就会显示`2y3`,当键入`d`的时候,操作完成,显示消失。 | |
set showcmd | |
" 支持使用鼠标。 | |
set mouse=a | |
" 启用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=2 | |
set smarttab | |
" 外观 | |
" 显示行号 | |
set number | |
" 显示光标所在的当前行的行号,其他行都为相对于该行的相对行号。 | |
set relativenumber | |
" 光标所在的当前行高亮。 | |
set cursorline | |
" 设置行宽,即一行显示多少个字符。 | |
set textwidth=80 | |
" 自动折行,即太长的行分成几行显示。 | |
set wrap | |
" 只有遇到指定的符号(比如空格、连词号和其他标点符号),才发生折行。也就是说,不会在单词内部折行。 | |
set linebreak | |
" 指定折行处与编辑窗口的右边缘之间空出的字符数。 | |
set wrapmargin=2 | |
" 垂直滚动时,光标距离顶部/底部的位置(单位:行)。 | |
set scrolloff=5 | |
" 水平滚动时,光标距离行首或行尾的位置(单位:字符)。该配置在不折行时比较有用。 | |
set sidescrolloff=15 | |
" 是否显示状态栏。0 表示不显示,1 表示只在多窗口时显示,2 表示显示。 | |
set laststatus=2 | |
" 在状态栏显示光标的当前位置(位于哪一行哪一列)。 | |
set ruler | |
" 搜索 | |
" 光标遇到圆括号、方括号、大括号时,自动高亮对应的另一个圆括号、方括号和大括号。 | |
set showmatch | |
" 搜索时,高亮显示匹配结果。 | |
set hlsearch | |
" 输入搜索模式时,每输入一个字符,就自动跳到第一个匹配的结果。 | |
set incsearch | |
" 搜索时忽略大小写。 | |
set ignorecase | |
" 如果同时打开了`ignorecase`,那么对于只有一个大写字母的搜索词,将大小写敏感;其他情况都是大小写不敏感。比如,搜索`Test`时,将不匹配`test`;搜索`test`时,将匹配`Test`。 | |
set smartcase | |
" 编辑 | |
" 打开英语单词的拼写检查。 | |
" set spell spelllang=en_us,cjk | |
" 不创建备份文件。默认情况下,文件保存时,会额外创建一个备份文件,它的文件名是在原文件名的末尾,再添加一个波浪号(〜)。 | |
set nobackup | |
" 不创建交换文件。交换文件主要用于系统崩溃时恢复文件,文件名的开头是`.`、结尾是`.swp`。 | |
set noswapfile | |
" 保留撤销历史。 | |
" Vim 会在编辑时保存操作历史,用来供用户撤消更改。默认情况下,操作记录只在本次编辑时有效,一旦编辑结束、文件关闭,操作历史就消失了。 | |
" 打开这个设置,可以在文件关闭后,操作记录保留在一个文件里面,继续存在。这意味着,重新打开一个文件,可以撤销上一次编辑时的操作。撤消文件是跟原文件保存在一起的隐藏文件,文件名以`.un~`开头。 | |
set undofile | |
" 自动切换工作目录。这主要用在一个 Vim 会话之中打开多个文件的情况,默认的工作目录是打开的第一个文件的目录。该配置可以将工作目录自动切换到,正在编辑的文件的目录。 | |
set autochdir | |
" 出错时,不要发出响声。 | |
set noerrorbells | |
" Vim 需要记住多少次历史操作。 | |
set history=1000 | |
" 打开文件监视。如果在编辑过程中文件发生外部改变(比如被别的编辑器编辑了),就会发出提示。 | |
set autoread | |
" 如果行尾有多余的空格(包括 Tab 键),该配置将让这些空格显示成可见的小方块。 | |
set listchars=tab:»■,trail:■ | |
set list | |
" 命令模式下,底部操作指令按下 Tab 键自动补全。第一次按下 Tab,会显示所有匹配的操作指令的清单;第二次按下 Tab,会依次选择各个指令。 | |
set wildmenu | |
set wildmode=longest:list,full | |
" 跳转到上次打开文件的位置 | |
autocmd BufReadPost * normal! g`" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment