IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 开发工具 -> ubuntu vim配置(参考) -> 正文阅读

[开发工具]ubuntu vim配置(参考)

安装好ubuntu虚拟机后,一般都会安装vim,但是原生的vim编辑器一般都不太好用。
结合网上的一些参考配置,就写了一份自己的配置,特此用此博客记录下,需要的自取即可。
执行如下指令:

vim  /etc/vim/vimrc

将下列内容复制到vimrc文本中。

" All system-wide defaults are set in $VIMRUNTIME/debian.vim and sourced by
" the call to :runtime you can find below.  If you wish to change any of those
" settings, you should do it in this file (/etc/vim/vimrc), since debian.vim
" will be overwritten everytime an upgrade of the vim packages is performed.
" It is recommended to make changes after sourcing debian.vim since it alters
" the value of the 'compatible' option.

" This line should not be removed as it ensures that various options are
" properly set to work with the Vim-related packages available in Debian.
runtime! debian.vim

" Vim will load $VIMRUNTIME/defaults.vim if the user does not have a vimrc.
" This happens after /etc/vim/vimrc(.local) are loaded, so it will override
" any settings in these files.
" If you don't want that to happen, uncomment the below line to prevent
" defaults.vim from being loaded.
" let g:skip_defaults_vim = 1

" Uncomment the next line to make Vim more Vi-compatible
" NOTE: debian.vim sets 'nocompatible'.  Setting 'compatible' changes numerous
" options, so any other options should be set AFTER setting 'compatible'.
"set compatible

" Vim5 and later versions support syntax highlighting. Uncommenting the next
" line enables syntax highlighting by default.
if has("syntax")
  syntax on
endif

" If using a dark background within the editing area and syntax highlighting
" turn on this option as well
"set background=dark

" Uncomment the following to have Vim jump to the last position when
" reopening a file
"if has("autocmd")
"  au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
"endif

" Uncomment the following to have Vim load indentation rules and plugins
" according to the detected filetype.
"if has("autocmd")
"  filetype plugin indent on
"endif

" The following are commented out as they cause vim to behave a lot
" differently from regular Vi. They are highly recommended though.
"set showcmd            " Show (partial) command in status line.
"set showmatch          " Show matching brackets.
"set ignorecase         " Do case insensitive matching
"set smartcase          " Do smart case matching
"set incsearch          " Incremental search
"set autowrite          " Automatically save before commands like :next and :make
"set hidden             " Hide buffers when they are abandoned
"set mouse=a            " Enable mouse usage (all modes)

" Source a global configuration file if available
if filereadable("/etc/vim/vimrc.local")
  source /etc/vim/vimrc.local
endif
set nu
set tabstop
set nobackup
set cursorline
set ruler
set autoindent
set t_Co=256

autocmd BufNewFile *.cpp,*.[ch],*.sh,*.java exec ":call SetTitle()"
func SetTitle()
     if &filetype == 'sh' 
                call setline(1, "##########################################################################") 
                call append(line("."),   "# File Name: ".expand("%")) 
                call append(line(".")+1, "# Author: 小和尚念经敲木鱼") 
                call append(line(".")+2, "# mail: ") 
                call append(line(".")+3, "# Created Time: ".strftime("%c")) 
                call append(line(".")+4, "#########################################################################") 
                call append(line(".")+5, "#!/bin/bash")
                call append(line(".")+6, "")
                call append(line(".")+7, "#/************end of file*****************/")
        else 
                call setline(1, "/*************************************************************************") 
                call append(line("."),   "      > File Name: ".expand("%")) 
                call append(line(".")+1, "      > Author: 小和尚念经敲木鱼") 
                call append(line(".")+2, "      > Mail:  ") 
                call append(line(".")+3, "      > Created Time: ".strftime("%c")) 
                call append(line(".")+4, " ***********************************************************************/") 
                call append(line(".")+5, "")
        endif
        if &filetype == 'cpp'
                call append(line(".")+6, "#include<iostream>")
                call append(line(".")+7, "using namespace std;")
                call append(line(".")+8, "/************************************************************************")
                call append(line(".")+9, "* 文件说明")
                call append(line(".")+10, "************************************************************************/")
                call append(line(".")+11, "int main(int agc,char * agv[])")
                call append(line(".")+12, "{")
                call append(line(".")+13, "")
                call append(line(".")+14, " ")
                call append(line(".")+15, " ")
                call append(line(".")+16, "  return 0;")
                call append(line(".")+17, "}")
                call append(line(".")+18, "/******************************end of file******************************/")
        else 

        endif
        if &filetype == 'c'
                call append(line(".")+6, "#include<stdio.h>")
                call append(line(".")+7, "/************************************************************************")
                call append(line(".")+8, "* 文件说明")
                call append(line(".")+9, "************************************************************************/")
                call append(line(".")+10, "int main(int agc,char * agv[])")
                call append(line(".")+11, "{")
                call append(line(".")+12, "")
                call append(line(".")+13, " ")
                call append(line(".")+14, " ")
                call append(line(".")+15, "  return 0;")
                call append(line(".")+16, "}")
                call append(line(".")+17, "/*******************************end of file*****************************/")

        endif
                if &filetype == 'java'
                        call append(line(".")+6,"public class ".expand("%"))
                        call append(line(".")+7,"")
                endif
        "新建文件后,自动定位到文件末尾
        autocmd BufNewFile * normal G
endfunc

set autowrite
set magic
set foldcolumn=0
set number
set hlsearch
set incsearch

退出保存。
执行下面指令:

source  /etc/vim/vimrc

在这里插入图片描述
完成收工!

  开发工具 最新文章
Postman接口测试之Mock快速入门
ASCII码空格替换查表_最全ASCII码对照表0-2
如何使用 ssh 建立 socks 代理
Typora配合PicGo阿里云图床配置
SoapUI、Jmeter、Postman三种接口测试工具的
github用相对路径显示图片_GitHub 中 readm
Windows编译g2o及其g2o viewer
解决jupyter notebook无法连接/ jupyter连接
Git恢复到之前版本
VScode常用快捷键
上一篇文章      下一篇文章      查看所有文章
加:2021-08-31 15:39:06  更:2021-08-31 15:41:21 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/16 6:42:31-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码