vim配置方案,欢迎白嫖!!!

 常用的vim配置基本都在下面提供的配置文件中:

        1.使用文本打开vim的配置文件,然后将下面提供的配置文件代码全部粘贴复制进去。

gedit ~/.vimrc

如果没有gedit,那么使用以下命令安装

sudo apt update  # 更新软件包列表
sudo apt install gedit  # 安装 Gedit

         2.配置完关掉vim窗口重新打开就行了。

 以下是vim的配置文件:

" .vimrc - Vim configuration file.
"
" Copyright (c) 2010 Jeffy Du. All Rights Reserved.
"
" Maintainer: Jeffy Du <jeffy.du@gmail.com>
"    Created: 2010-01-01
" LastChange: 2010-04-22

" GENERAL SETTINGS: {{{1
" To use VIM settings, out of VI compatible mode.
set nocompatible               " 禁用VI兼容模式,启用Vim的设置
" Enable file type detection.  
filetype plugin indent on      " 启用文件类型检测,插件支持和自动缩进
" Syntax highlighting.
syntax on                      " 启用语法高亮
" Setting colorscheme
" color mycolor
" Other settings.
set   autoindent               " 启用自动缩进。
set   autoread                 " 当文件在 Vim 外部被修改时自动重新读取。
set   autowrite                " 在执行需要保存文件的命令前自动保存。
set   background=dark          " 设置背景为暗色。
set   backspace=indent,eol,start " 允许在插入模式下使用退格键。
set nobackup                   " 不保留备份文件。
set   cindent                  " 启用 C 风格缩进。
set   cinoptions=:0            " 设置 C 风格缩进选项。
set   cursorline               " 高亮当前行。
set   completeopt=longest,menuone " 设置补全选项。
set noexpandtab                " 不使用扩展制表符。
set   fileencodings=utf-8,gb2312,gbk,gb18030 " 设置文件编码。
set   fileformat=unix          " 设置文件格式为 Unix。
set   foldenable               " 启用折叠。
set   foldmethod=marker        " 使用标记进行折叠。
set   guioptions-=T            " 禁用工具栏。
set   guioptions-=m            " 禁用菜单。
set   guioptions-=r            " 禁用右侧滚动条。
set   guioptions-=l            " 禁用左侧滚动条。
set   helpheight=10            " 设置帮助窗口高度。
set   helplang=cn              " 设置帮助语言为中文。
set   hidden                   " 允许隐藏未保存的缓冲区。
set   history=100              " 设置命令历史记录数为100。
set   hlsearch                 " 启用搜索高亮。
set   ignorecase               " 搜索时忽略大小写。
set   incsearch                " 实时显示搜索结果。
set   laststatus=2             " 总是显示状态行。
set   mouse=a                  " 启用鼠标支持。
set   number                   " 显示行号。
set   pumheight=10             " 设置弹出菜单高度。
set   ruler                    " 显示标尺。
set   scrolloff=5              " 光标距离窗口边缘多少行开始滚动。
set   shiftwidth=4             " 设置缩进宽度为4个空格。
set   showcmd                  " 在状态行显示正在输入的命令。
set   smartindent              " 智能缩进。
set   smartcase                " 搜索时使用智能大小写。
set   tabstop=4                " 设置制表符宽度为4个空格。
set   termencoding=utf-8       " 设置终端编码为 UTF-8。
set   textwidth=80             " 设置文本宽度为80个字符。
set   whichwrap=h,l            " 允许使用 h 和 l 键换行。
set   wildignore=*.bak,*.o,*.e,*~ " 在文件名补全时忽略这些文件类型。
set   wildmenu                 " 启用命令行模式下的菜单。
set   wildmode=list:longest,full " 设置补全模式。
set nowrap                    " 禁用自动换行。

" AUTO COMMANDS: {{{1
" auto expand tab to blanks
"autocmd FileType c,cpp set expandtab
" Restore the last quit position when open file.
autocmd BufReadPost *
    \ if line("'\"") > 0 && line("'\"") <= line("$") |
    \     exe "normal g'\"" |
    \ endif

" SHORTCUT SETTINGS: {{{1
" Set mapleader
let mapleader=","
" Space to command mode.
nnoremap <space> :
vnoremap <space> :
" Switching between buffers.
nnoremap <C-h> <C-W>h
nnoremap <C-j> <C-W>j
nnoremap <C-k> <C-W>k
nnoremap <C-l> <C-W>l
inoremap <C-h> <Esc><C-W>h
inoremap <C-j> <Esc><C-W>j
inoremap <C-k> <Esc><C-W>k
inoremap <C-l> <Esc><C-W>l
" "cd" to change to open directory.
let OpenDir=system("pwd")
nmap <silent> <leader>cd :exe 'cd ' . OpenDir<cr>:pwd<cr>

" PLUGIN SETTINGS: {{{1
" taglist.vim
let g:Tlist_Auto_Update=1
let g:Tlist_Process_File_Always=1
let g:Tlist_Exit_OnlyWindow=1
let g:Tlist_Show_One_File=1
let g:Tlist_WinWidth=25
let g:Tlist_Enable_Fold_Column=0
let g:Tlist_Auto_Highlight_Tag=1
" NERDTree.vim
let g:NERDTreeWinPos="right"
let g:NERDTreeWinSize=25
let g:NERDTreeShowLineNumbers=1
let g:NERDTreeQuitOnOpen=1
" cscope.vim
if has("cscope")
    set csto=1
    set cst
    set nocsverb
    if filereadable("cscope.out")
        cs add cscope.out
    endif
    set csverb
endif
" OmniCppComplete.vim
"set nocp 
"filetype plugin on 
let g:OmniCpp_DefaultNamespaces=["std"]
let g:OmniCpp_MayCompleteScope=1
let g:OmniCpp_SelectFirstItem=2

" VimGDB.vim
if has("gdb")
	set asm=0
	let g:vimgdb_debug_file=""
	run macros/gdb_mappings.vim
endif
" LookupFile setting
let g:LookupFile_TagExpr='"./tags.filename"'
let g:LookupFile_MinPatLength=2
let g:LookupFile_PreserveLastPattern=0
let g:LookupFile_PreservePatternHistory=1
let g:LookupFile_AlwaysAcceptFirst=1
let g:LookupFile_AllowNewFiles=0
" Man.vim
source $VIMRUNTIME/ftplugin/man.vim
" snipMate
let g:snips_author="Du Jianfeng"
let g:snips_email="cmdxiaoha@163.com"
let g:snips_copyright="SicMicro, Inc"
" plugin shortcuts
function! RunShell(Msg, Shell)
	echo a:Msg . '...'
	call system(a:Shell)
	echon 'done'
endfunction
nmap  <F2> :TlistToggle<cr>
nmap  <F3> :NERDTreeToggle<cr>
nmap  <F4> :MRU<cr>
nmap  <F5> <Plug>LookupFile<cr>
nmap  <F6> :vimgrep /<C-R>=expand("<cword>")<cr>/ **/*.c **/*.h<cr><C-o>:cw<cr>
nmap  <F9> :call RunShell("Generate tags", "ctags -R --c++-kinds=+p --fields=+iaS --extra=+q .")<cr>
nmap <F10> :call HLUDSync()<cr>
nmap <F11> :call RunShell("Generate filename tags", "~/.vim/shell/genfiletags.sh")<cr>
nmap <F12> :call RunShell("Generate cscope", "cscope -Rb")<cr>:cs add cscope.out<cr>
nmap <leader>sa :cs add cscope.out<cr>
nmap <leader>ss :cs find s <C-R>=expand("<cword>")<cr><cr>
nmap <leader>sg :cs find g <C-R>=expand("<cword>")<cr><cr>
nmap <leader>sc :cs find c <C-R>=expand("<cword>")<cr><cr>
nmap <leader>st :cs find t <C-R>=expand("<cword>")<cr><cr>
nmap <leader>se :cs find e <C-R>=expand("<cword>")<cr><cr>
nmap <leader>sf :cs find f <C-R>=expand("<cfile>")<cr><cr>
nmap <leader>si :cs find i <C-R>=expand("<cfile>")<cr><cr>
nmap <leader>sd :cs find d <C-R>=expand("<cword>")<cr><cr>
nmap <leader>zz <C-w>o
nmap <leader>gs :GetScripts<cr>

let Tlist_Show_One_File=0
set noswapfile
set tags+=/usr/include/tags
set tags+=./tags
map ta :!ctags -R --c++-kinds=+p --fields=+iaS --extra=+q .<CR>
noremap io i#include <stdio.h><Esc>o<Esc>
noremap im iint main(int argc, char *argv[])<Esc>
map mf io<Esc>o<Esc>imo{<Esc>oreturn 0;<Esc>o}<Esc>2ko

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值