• vim一般设置


    如果不知道配置文件及脚本的位置,可以在vim中使用命令 :scriptnames ,将显示如下路径
    /etc/vimrc
    /usr/share/vim/vim72/syntax/syntax.vim
    /usr/share/vim/vim72/syntax/synload.vim
    /usr/share/vim/vim72/syntax/syncolor.vim
    /usr/share/vim/vim72/filetype.vim
    /usr/share/vim/vim72/ftplugin.vim
    /home/kdj/.vimrc

    ~$ cat .vimrc 

    """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
    " 一般设定
    """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
    " 设定默认解码
    set fenc=utf-8
    set fencs=utf-8,usc-bom,euc-jp,gb18030,gbk,gb2312,cp936

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

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

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

    " 侦测文件类型
    filetype on

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

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

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

    " 语法高亮
    syntax on

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

    " 在状态行上显示光标所在位置的行号和列号
    set ruler
    set rulerformat=%20(%2*%<%f%=\ %m%r\ %3l\ %c\ %p%%%) 

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

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

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

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

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

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

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

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

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

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

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

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

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

    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 <C-o> <ESC>'<i<!--<ESC>o<ESC>'>o-->
       autocmd FileType java,c,cpp,cs vmap <C-o> <ESC>'<o/*<ESC>'>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`\"" |
          \ endif
    endif " has("autocmd") 


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

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

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

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

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

    我自己用的设置在这里

  • 相关阅读:
    nginx+tomcat负载均衡
    一个tomcat部署多个应用实例
    多级菜单存在同一张表,一次性把所有关系取出来
    关于ajax post请求,参数过大产生的问题解决 Java
    nginx 的 proxy_cache 缓存配置
    nginx 安装 lua_nginx_module 模块(nginx——lua 学习笔记1)
    nginx 反向代理
    nginx的共享字典项api(操作方法)
    sed 常用命令 网址
    Django之 数据库ORM
  • 原文地址:https://www.cnblogs.com/tiandsp/p/2584440.html
Copyright © 2020-2023  润新知