vim 基础配置

时间:2023-12-30 12:53:20

最近在使用 python 搞服务, 简单配置了一个 vim, 配置了自动补全以及背景色 。(ps:搜狗输入法快捷键占用真是太坑爹,改用谷歌输入法,世界安静了)

具体配置如下:

一、 安装插件

1、克隆 Vundle 到本地: 
 git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim 

2、 配置  ~/.vimrc

  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 " let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim' " python auto-complete
Plugin 'davidhalter/jedi-vim' " tab
Plugin 'ervandew/supertab' " background
Plugin 'altercation/vim-colors-solarized' " All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required let g:SuperTabDefaultCompletionType = "context"
let g:jedi#popup_on_dot = syntax on
set background=dark
colorscheme solarized
let g:solarized_termcolors= set number

二、 快捷键

函数跳转功能:

1、安装 c-tags:

sudo apt-get install exuberant-ctags

2、创建 tags, 在项目文件目录下

ctags -R *
"--ctags setting--
" 按下F5重新生成tag文件,并更新taglist
map <F5> :!ctags -R --c++-kinds=+p --fields=+iaS --extra=+q .<CR><CR> :TlistUpdate<CR>
imap <F5> <ESC>:!ctags -R --c++-kinds=+p --fields=+iaS --extra=+q .<CR><CR> :TlistUpdate<CR>
set tags=tags
set tags+=./tags "add current directory's generated tags file
set tags+=~/arm/linux-2.6.24.7/tags "add new tags file(刚刚生成tags的路径,在ctags -R 生成tags文件后,不要将tags移动到别的目录,否则ctrl+]时,会提示找不到源码文件) set tags+=./tags表示在当前工作目录下搜索tags文件
set tags+=~/arm/linux-2.6.24.7/tags表示在搜寻tags文件的时候,也要搜寻~/arm/linux-2.6.24.7/文件夹下的tags文件。
然后保存并退出vi。这样,你就可以用vim在任意地方查看有关Linux的函数原形
------------------------------------
tag命令用法:
Ctrl+] 跳到当前光标下单词的标签
Ctrl+O 返回上一个标签
Ctrl+T 返回上一个标签

3、使用

跳转: Ctrl + ]

返回: Ctrl + T

参考:https://www.cnblogs.com/zhangsf/archive/2013/06/13/3134409.html