• -------------》》》【Vim】vim的一些简单配置~


    1. 在linux下使用   :vsp ~/.vimrc   来打开配置文件
    2. 一些命令【任何命令前加上   !    强制执行】:
      1. :w     保存

      2.  

        :wq    保存退出

      3.  

        :q     退出

      4.  

        ctrl + b   向前翻页    

      5.  

        ctrl + f   向后翻页

      6.  

        :vsp 打开或新建某文件

    3. 配置:

      【【【【【【【【【【set nocompatible "关闭vi兼容模式,可以启用方向键和Backspace
      syntax on 【语法高亮
      set number 【显示行号     简写为 set nu
      colorscheme slate 【【【设定配色方案
      【【【"set cursorline " 突出显示当前行
      set ruler " 打开状态栏标尺
      set shiftwidth=4 " 设定 << 和 >> 命令移动时的宽度为 4     【【【set sw=4
      set softtabstop=4 " 使得按退格键时可以一次删掉 4 个空格    【【st=4
      set tabstop=4 " 设定 tab 长度为 4    【【【ts=4
      "set nobackup " 覆盖文件时不备份
      set autoindent
      set cindent
      set guifont=Consolas:h19            【一个比较好看的实用字体】

    4. set smarttab
      set number
      set sw=4
      set ts=4
      color desert
      set autoindent
      set cindent
      syntax on
      set guifont=Consolas:h14
      
      map! vmrc <Esc>:vsp ~/.vimrc<CR>
      map! ee <Esc>:w<CR>
      imap ss <Esc>:w<CR>a
      imap qqq <Esc>:wq<CR>
      imap uu <Esc>ua
      imap rr <Esc><C-S-r>a
      
      map! <A-l> <Esc>/
      
      imap 03 000
      imap 04 0000
      imap 05 00000
      imap 06 000000
      imap 07 0000000
      imap 08 00000000
      imap 09 000000000
      
      imap fht fth
      imap whiel while
      imap itn int
      imap vodi void
      imap usign using
  • 相关阅读:
    (一)3、安装jexus
    走向全栈之坑—开始实践
    java Collection.stream操作
    redis常用命令练习
    Spring4
    java数据提交时问题
    常见协议默认端口
    重写equals方法
    redis
    xml
  • 原文地址:https://www.cnblogs.com/snifemoree/p/6913574.html
Copyright © 2020-2023  润新知