sudo apt-get install vim-full

在终端下面 输入 gedit ~/.vimrc 把1的文件复制到里面,然后保存

在终端下面 输入 gedit ~/.gvimrc 把2的文件复制到里面,然后保存。

然后关闭终端,重新开启终端,进入VIM即可以看到效果.vimrc"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 一般设定"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 设定默认解码set fenc=utf-8set fencs=utf-8,usc-bom,euc-jp,gb18030,gbk,gb2312,cp936

" 不要使用vi的键盘模式,而是vim自己的set nocompatible

" history文件中需要记录的行数set history=100

" 在处理未保存或只读文件的时候,弹出确认set confirm

" 与windows共享剪贴板set clipboard+=unnamed

" 侦测文件类型filetype on

" 载入文件类型插件filetype plugin on

" 为特定文件类型载入相关缩进文件filetype indent on

" 保存全局变量set viminfo+=!

" 带有如下符号的单词不要被换行分割set iskeyword+=_,$,@,%,#,-

" 语法高亮syntax on

" 高亮字符,让其不受100列限制:highlight OverLength ctermbg=red ctermfg=white guibg=red guifg=white:match OverLength '\%101v.*'

" 状态行颜色highlight StatusLine guifg=SlateBlue guibg=Yellowhighlight StatusLineNC guifg=Gray guibg=White

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 文件设置"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 不要备份文件(根据自己需要取舍)set nobackup

" 不要生成swap文件,当buffer被丢弃的时候隐藏它setlocal noswapfileset bufhidden=hide

" 字符间插入的像素行数目set linespace=0

" 增强模式中的命令行自动完成操作set wildmenu

" 在状态行上显示光标所在位置的行号和列号set rulerset rulerformat=%20(%2*%

" 命令行(在状态行下)的高度,默认为1,这里是2set cmdheight=2

" 使回格键(backspace)正常处理indent, eol, start等set backspace=2

" 允许backspace和光标键跨越行边界set whichwrap+=,h,l

" 可以在buffer的任何地方使用鼠标(类似office中在工作区双击鼠标定位)set mouse=aset selection=exclusiveset selectmode=mouse,key

" 启动的时候不显示那个援助索马里儿童的提示set shortmess=atI

" 通过使用: commands命令,告诉我们文件的哪一行被改变过set report=0

" 不让vim发出讨厌的滴滴声set noerrorbells

" 在被分割的窗口间显示空白,便于阅读set fillchars=vert:\ ,stl:\ ,stlnc:\

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 搜索和匹配"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 高亮显示匹配的括号set showmatch

" 匹配括号高亮的时间(单位是十分之一秒)set matchtime=5

" 在搜索的时候忽略大小写set ignorecase

" 不要高亮被搜索的句子(phrases)set nohlsearch

" 在搜索时,输入的词句的逐字符高亮(类似firefox的搜索)set incsearch

" 输入:set list命令是应该显示些啥?set listchars=tab:\|\ ,trail:.,extends:>,precedes:

" 光标移动到buffer的顶部和底部时保持3行距离set scrolloff=3

" 不要闪烁set novisualbell

" 我的状态行显示的内容(包括文件类型和解码)set statusline=%F%m%r%h%w\ [FORMAT=%{&ff}]\ [TYPE=%Y]\ [POS=%l,%v][%p%%]\ %{strftime(\"%d/%m/%y\ -\ %H:%M\")}

" 总是显示状态行set laststatus=2

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 文本格式和排版"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 自动格式化set formatoptions=tcrqn

" 继承前一行的缩进方式,特别适用于多行注释set autoindent

" 为C程序提供自动缩进set smartindent

" 使用C样式的缩进set cindent

" 制表符为4set tabstop=4

" 统一缩进为4set softtabstop=4set shiftwidth=4

" 不要用空格代替制表符set noexpandtab

" 不要换行set nowrap

" 在行和段开始处使用制表符set smarttab

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" CTags的设定"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 按照名称排序let Tlist_Sort_Type = "name"

" 在右侧显示窗口let Tlist_Use_Right_Window = 1

" 压缩方式let Tlist_Compart_Format = 1

" 如果只有一个buffer,kill窗口也kill掉bufferlet Tlist_Exist_OnlyWindow = 1

" 不要关闭其他文件的tagslet Tlist_File_Fold_Auto_Close = 0

" 不要显示折叠树let Tlist_Enable_Fold_Column = 0

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" Autocommands"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 只在下列文件类型被侦测到的时候显示行号,普通文本文件不显示

if has("autocmd")autocmd FileType xml,html,c,cs,java,perl,shell,bash,cpp,python,vim,php,ruby set numberautocmd FileType xml,html vmap 'o'>o-->autocmd FileType java,c,cpp,cs vmap 'autocmd FileType html,text,php,vim,c,java,xml,bash,shell,perl,python setlocal textwidth=100autocmd Filetype html,xml,xsl source $VIMRUNTIME/plugin/closetag.vimautocmd BufReadPost *\ if line("'\"") > 0 && line("'\"") <= line("$") |\exe "normal g`\"" |\ endifendif " has("autocmd")

" F5编译和运行C程序,F6编译和运行C++程序" 请注意,下述代码在windows下使用会报错" 需要去掉./这两个字符

" C的编译和运行map :call CompileRunGcc()func! CompileRunGcc()exec "w"exec "!gcc % -o %exec "! ./%endfunc

" C++的编译和运行map :call CompileRunGpp()func! CompileRunGpp()exec "w"exec "!g++ % -o %exec "! ./%endfunc

" 能够漂亮地显示.NFO文件set encoding=utf-8function! SetFileEncodings(encodings)let b:myfileencodingsbak=&fileencodingslet &fileencodings=a:encodingsendfunctionfunction! RestoreFileEncodings()let &fileencodings=b:myfileencodingsbakunlet b:myfileencodingsbakendfunction

au BufReadPre *.nfo call SetFileEncodings('cp437')|set ambiwidth=singleau BufReadPost *.nfo call RestoreFileEncodings()

" 高亮显示普通txt文件(需要txt.vim脚本)au BufRead,BufNewFile *setfiletype txt

" 用空格键来开关折叠set foldenableset foldmethod=manualnnoremap @=((foldclosed(line('.')) < 0) ? 'zc' : 'zo')

" minibufexpl插件的一般设置let g:miniBufExplMapWindowNavVim = 1let g:miniBufExplMapWindowNavArrows = 1let g:miniBufExplMapCTabSwitchBufs = 1let g:miniBufExplModSelTarget = 1--------------------------------------------------------------------------------.gvimrc" Buffer的位置和大小winpos 300 100set lines=28set columns=90

" 因为设定为不换行,所以要显示底部滚动条,不显示左右滚动条和工具栏set guioptions+=bset guioptions-=rset guioptions-=lset guioptions-=T

" 设定颜色方案和字体" 英文用Consolas显示,中文用微软雅黑colorscheme desertset guifont=Consolas\ 11.5set guifontset=Microsoft\ YaHei\ 11

" 用浅色高亮当前行autocmd InsertLeave * se noculautocmd InsertEnter * se cul

" 不要使用vi的键盘模式,而是自己的set nocompatible" 语法高亮set syntax=on" 去掉输入错误的提示声音set noeb" 在处理未保存或只读的时候,弹出确认set confirm" 自动缩进set autoindentset cindent" Tab键的宽度set tabstop=4" 统一缩进为4set softtabstop=4set shiftwidth=4" 不要用空格代替制表符set noexpandtab" 在行和段开始处使用制表符set smarttab" 显示行号set number" 历史记录数set history=1000"禁止生成临时文件set nobackupset noswapfile"搜索忽略大小写set ignorecase"搜索逐字符高亮set hlsearchset incsearch"行内替换set gdefault"编码set enc=utf-8set fencs=utf-8,ucs-bom,shift-jis,gb18030,gbk,gb2312,cp936"语言设置set langmenu=zh_CN.UTF-8set helplang=cn" 我的状态行显示的内容(包括文件类型和解码)set statusline=%F%m%r%h%w\ [FORMAT=%{&ff}]\ [TYPE=%Y]\ [POS=%l,%v][%p%%]\ %{strftime(\"%d/%m/%y\ -\ %H:%M\")}"set statusline=[%F]%y%r%m%*%=[Line:%l/%L,Column:%c][%p%%]" 总是显示状态行set laststatus=2" 在编辑过程中,在右下角显示光标位置的状态行set ruler           " 行(在状态行下)的高度,默认为1,这里是2set cmdheight=2" 侦测文件类型filetype on" 载入文件类型插件filetype plugin on" 为特定文件类型载入相关缩进文件filetype indent on" 保存全局变量set viminfo+=!" 带有如下符号的单词不要被换行分割set iskeyword+=_,$,@,%,#,-" 字符间插入的像素行数目set linespace=0" 增强模式中的命令行自动完成操作set wildmenu" 使回格键(backspace)正常处理indent, eol, start等set backspace=2" 允许backspace和光标键跨越行边界set whichwrap+=,h,l" 可以在buffer的任何地方使用鼠标(类似office中在工作区双击鼠标定位)set mouse=aset selection=exclusiveset selectmode=mouse,key" 通过使用: commands命令,告诉我们文件的哪一行被改变过set report=0" 启动的时候不显示那个援助索马里儿童的提示set shortmess=atI" 在被分割的窗口间显示空白,便于阅读set fillchars=vert:\ ,stl:\ ,stlnc:\" 高亮显示匹配的括号set showmatch" 匹配括号高亮的时间(单位是十分之一秒)set matchtime=5" 光标移动到buffer的顶部和底部时保持3行距离set scrolloff=3" 为C程序提供自动缩进set smartindent" 只在下列文件类型被侦测到的时候显示行号,普通文本文件不显示if has("autocmd")   autocmd FileType xml,html,c,cs,java,perl,shell,bash,cpp,python,vim,php,ruby set number   autocmd FileType xml,html vmap 'o'>o-->   autocmd FileType ,c,cpp,cs vmap ''>o*/   autocmd FileType html,text,php,vim,c,java,xml,bash,shell,perl,python setlocal textwidth=100   autocmd Filetype html,xml,xsl source $VIMRUNTIME/plugin/closetag.vim   autocmd BufReadPost *      \ if line("'\"") > 0 && line("'\"") <= line("$") |      \   exe "normal g`\"" |      \ endifendif " has("autocmd")" F5编译和运行C程序,F6编译和运行C++程序" 请注意,下述代码在下使用会报错" 需要去掉./这两个字符" C的编译和运行map :call CompileRunGcc()func! CompileRunGcc()exec "w"exec "!gcc % -o %exec "! ./%endfunc" C++的编译和运行map :call CompileRunGpp()func! CompileRunGpp()exec "w"exec "!g++ % -o %exec "! ./%endfunc" 能够漂亮地显示.NFO文件set encoding=utf-8function! SetFileEncodings(encodings)    let b:myfileencodingsbak=&fileencodings    let &fileencodings=a:encodingsendfunctionfunction! RestoreFileEncodings()    let &fileencodings=b:myfileencodingsbak    unlet b:myfileencodingsbakendfunctionau BufReadPre *.nfo call SetFileEncodings('cp437')|set ambiwidth=singleau BufReadPost *.nfo call RestoreFileEncodings()" 高亮显示普通txt文件(需要txt.vim脚本)au BufRead,BufNewFile *  setfiletype txt" 用空格键来开关折叠set foldenableset foldmethod=manualnnoremap @=((foldclosed(line('.')) < 0) ? 'zc' : 'zo')" minibufexpl插件的一般设置let g:miniBufExplMapWindowNavVim = 1let g:miniBufExplMapWindowNavArrows = 1let g:miniBufExplMapCTabSwitchBufs = 1let g:miniBufExplModSelTarget = 1

linux vim 配置文件在哪,linux系统常用 VIM配置文件相关推荐

  1. linux六个标准目录,Linux基本目录规范——XDG

    XDG Base Directory Specification该规范定义了一套指向应用程序的环境变量,这些变量指明的就是这些程序应该存储的基准目录.而变量的具体值取决于用户,若用户未指定,将由程序本 ...

  2. Linux系统Vi/Vim编辑器的简单介绍、安装/卸载、常用命令

    Linux系统Vi/Vim编辑器的简单介绍.安装/卸载.常用命令 1.介绍 vi(Visual Interface)编辑器是Linux和Unix上最基本的文本编辑器,工作在字符模式下.由于不需要图形界 ...

  3. Linux、Kali系统常用命令

    Kali简单介绍 Kali Linux是基于Debian的Linux发行版, 设计用于数字取证操作系统.每一季度更新一次.由Offensive Security Ltd维护和资助.最先由Offensi ...

  4. linux系统 常用命令

    linux系统 常用命令 ps –ef|grep java 查看进程 netstat –an|grep 52818查看端口是否开启 tail –f log.log 查看日志 echo hello &g ...

  5. vi/vim命令怎么在Linux系统中使用

    本篇文章为大家展示了vi/vim命令怎么在Linux系统中使用,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获. 1.vi和vim的区别: 就是在进入一般命令模式 ...

  6. 【收藏】Linux系统常用命令速查手册(附赠PDF档)

    给大家收集整理了日常常用的Linux系统命令,仅供大家参考. 大家如果觉得文章看起来不太方便,获取<Linux系统常用命令速查手册>.PDF版. 联系小姐姐,备注"liunx命令 ...

  7. 【收藏】Linux系统常用命令速查手册(附PDF下载链接)

    给大家收集整理了日常常用的Linux系统命令,仅供大家参考. 大家如果觉得文章看起来不太方便,可以在+qq. 2 3 5 53 3 1 0 4 6 备注"liunx命令",即可获取 ...

  8. Linux系统常用命令以及常见问题的解决方法

    常用命令 sed sed 是一种流编辑器,它是文本处理中非常常用的工具,能够完美的配合正则表达式使用,功能非常强大. mkdir playgroundtouch test.txtecho " ...

  9. linux的vim怎么配置文件路径,Linux_Linux系统配置VI或VIM的技巧,1、VI或VIM的配置文件的路径 - phpStudy...

    Linux系统配置VI或VIM的技巧 1.VI或VIM的配置文件的路径 发现/usr/share/vim/vimrc和/etc/vim/vimrc指向是同一个文件,即vimrc,为vi和vim的配置文 ...

最新文章

  1. php file抓取不到内容,深入file_get_contents函数抓取内容失败的原因分析
  2. 编码练习——Java-1-基础
  3. ASN.1 Editor
  4. selenium ie 操作cookie_Python3中selenium 怎么操作Cookie?
  5. 前端学习(2911):cdn的加速策略
  6. Linux中配置ftp服务器
  7. Hibernate学习之hibernate.cfg.xml
  8. centos安装python3.4 pip3
  9. IT公司100题-14-排序数组中和为给定值的两个数字
  10. devops 技术_在DevOps时代雇用技术作家
  11. windows10 下使用Pycharm2016 基于Anaconda3 Python3.6 安装Mysql驱动总结
  12. 华为举办HDC.Cloud媒体预沟通会,为开发者提供ICT“黑土地”
  13. 怎么打钩_如何在excel中打钩
  14. oracle byte 转string,C# 中 byte 转化成string
  15. Linux系统磁盘分区、删除分区、格式化、挂载、卸载、开机自动挂载的方法总结...
  16. python小项目实战my--电子词典
  17. 五款优秀的端口扫描工具
  18. 比例尺和分辨率的相关概念
  19. 用Andriod studio学习制作APP
  20. vs code快捷键

热门文章

  1. 人脸识别成“网红” 与交通行业结下不解情缘
  2. leetcode解题常见思路
  3. 论文阅读笔记---Recent development in CNC machining of freeform surfaces: A state-of-the-art review
  4. 查看公司工商注册信息
  5. 激光溶脂效果好吗安全吗,肚子抽脂肪对身体有害吗
  6. Array.sort用法
  7. javascript操作table(insertRow(),deleteRow(),insertCell(),deleteCell()方法)
  8. 新手选车系列之(一): 买新车还是淘旧车
  9. 【图像去雾】基于多重曝光图像融合进行图像去雾matlab代码
  10. linux设备描述文件,iOS开发 - 超级签名实现之描述文件