将vim变为IDE(不定期更新)

今天重新配置了一下vim,将其配置成为了一个完整的IDE。包括自动补全,文件列表,函数列表等  

先来一张图将vim变为IDE(不定期更新)_第1张图片


以下是文件配置:

set shortmess=atI   " 启动的时候不显示那个援助乌干达儿童的提示  
set nu              " 显示行号  
syntax on           " 语法高亮  
set ruler           " 显示标尺  
set showmode
set showcmd
set hlsearch
set nocompatible  "去掉讨厌的有关vi一致性模式,避免以前版本的一些bug和局限  
set cursorcolumn   "竖行高亮
set cursorline     "当前横行高亮
set foldmethod=syntax    "设置折叠   
set foldlevelstart=99
set autoindent   "自动缩进
set tabstop=2
set softtabstop=2
set shiftwidth=2
set relativenumber     "设置相对行号
"配色方案
set t_Co=256
syntax enable
set background=dark
colorscheme molokai


let mapleader=";"
nmap <Leader>q :q<CR>
nmap <Leader>w :w<CR>
nmap <Leader>qa :qa<CR>
nmap <Leader>wq :wq<CR>
nmap <Leader>a za
nmap <Leader>j <C-W>j
nmap <Leader>k <C-W>k
nmap <Leader>h <C-W>h
nmap <Leader>l <C-W>l
nmap <Leader>g :Te<Space>
nmap <Leader>t gt
nmap <Leader>f gf


nmap <C-U> <C-v>0d
nmap <C-K> <C-v>$d
nmap <CR> G
nmap <backspace> gg


inoremap jk <Esc>
inoremap ( ()<LEFT>
inoremap [ []<LEFT>
inoremap { <CR><Tab>{<CR>}<ESC>O<Tab>

function HeaderPython()
    call setline(1, "#coding: utf-8")
    call append(1, "\#Created Time: ".strftime('%Y-%m-%d %T', localtime()))
		call append(2,"")
    normal G
endf

function Headersh()
    call setline(1,"\#########################################################################") 
		call append(1,"\#File Name:".expand("%"))
		call append(2,"\#Created Time:".strftime('%Y-%m-%d %T'))
    call append(3, "\#########################################################################") 
    call append(4, "\#!/bin/bash") 
		call append(5,"")
		normal G
endf

function Headercpp()
		call setline(1,"/*******************************************************")
		call append(1,"File Name:".expand("%"))
		call append(2,"Created Time:".strftime('%Y-%m-%d %T'))
		call append(3,"********************************************************/")
		call append(4,"\#include<iostream>")
		call append(5,"using namespace std;")
		call append(6,"")
		normal G
endf

autocmd bufnewfile *.py call HeaderPython()
autocmd bufnewfile *.sh call Headersh()
autocmd bufnewfile *.cpp call Headercpp()

map <F5> :call CompileRunGcc()<CR>
func! CompileRunGcc()
	exec "w"
	if &filetype == 'c'
		exec "!g++ % -o %<"
	  exec "! ./%<"
	elseif &filetype == 'cpp'
	  exec "!g++ % -o %<"
	  exec "! ./%<"
	elseif &filetype == 'sh'
	  :!./%
	elseif &filetype == 'python'
		exec "!python %"
	endif
endfunc

"Plugin
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 'gmarik/Vundle.vim'
Plugin 'scrooloose/nerdtree'
Plugin 'Valloric/YouCompleteMe'
Plugin 'vim-scripts/a.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
let g:ycm_global_ycm_extra_conf = '~/.vim/bundle/YouCompleteMe/cpp/ycm/.ycm_extra_conf.py'


"NERDTree
map <C-N> :NERDTreeToggle<CR>
let NERDTreeShowBookmarks=1 "显示书签
let NERDTreeDirArrows=0 "目录箭头 1 显示箭头  0传统+-|号
"autocmd VimEnter * NERDTree
"autocmd VimEnter * wincmd p
"autocmd VimEnter * if !argc() | NERDTree | endif

"Taglist
map <C-L> :Tlist<CR>
let Tlist_Show_One_File=0        
let Tlist_Ctags_Cmd="/usr/bin/ctags" "将taglist与ctags关联  
let Tlist_Exit_OnlyWindow=1    "最后一个窗口时退出
let Tlist_Use_Right_Window=1
let Tlist_File_Fold_Auto_Close=1
"let Tlist_Auto_Open=1

"ctags
map <F9>  :!ctags -R --c++-kinds=+p --fields=+iaS --extra=+q .<CR>


稍微解释一下上面的部分配置文件


配色方案:这个需要去molokai官网下载一个molokai.vim 的文件,放入~/.vim/colors文件夹下(如果没有请新建一个)


Plugin:

这个部分就直接将代码写入~/.vimrc文件之后,重新输入:vim  ,再输入::PluginInstall  等待安装就好了(可能时间比较长)


NERDTree:

刚刚的Plugin部分已经安装好了,直接输入配置就好了


Taglist:

这个部分需要到taglist官网下载一个taglist.vim的文件,放入~/.vim/plugin文件夹下(没有就新建)。之后将上述的配置输入到.vimrc中


ctags:

这个直接通过输入:apt-get install catgs 安装,然后配置就好了 


最后说一下补全插件YouCompleteMe,出现错误可以参考 Ubuntu下安装YouCompleteMe插件这篇文章解决


当添加新的功能时,本博客会持续更新,敬请期待



你可能感兴趣的:(linux,vim)