zoukankan      html  css  js  c++  java
  • Windowns下使用SecuretCRT编写脚本增加高亮

       作者:邓聪聪 

    secureCRT设置高亮
    1)修改环境变量:export TERM=xterm-color

    2)增加VIM高亮:vim ~/.vimrc 
     set syntax=on
     colorscheme evening
     set autoindent
     
     全局(所有用户)vim配置文件路径:/etc/vimrc
     syntax on
    set hlsearch
    colorscheme desert   #主题及样式 murphy/blue/slate/evening/ron/pablo
    set nocompatible
    set backspace=indent,eol,start

    source /etc/profile  #使能配置生效

    设置客户端的CRT

     
    2:

    if &term=="xterm"
    set t_Co=8
    set t_Sb=dm
    set t_Sf=dm
    endif

    3:

    [root@cacti ~]# cat  ~/.vimrc 
    syntax on
    " ==============================================     
    " " General settings     
    " " ==============================================     
    set nocp     
    set ru     
    set nu     
    " "set cin     
    " "set cino = :0g0t0(sus     
    set sm     
    set ai     
    set sw=4    
    set ts=4    
    set noet     
    set lbr     
    set hls     
    "set backspace = indent , eol , start     
    "set whichwrap = b , s , < , > , [ , ]     
    "set fo+ = mB     
    set selectmode =     
    "set mousemodel = popup    
    set keymodel =     
    "set selection = inclusive    
    "set matchpairs+ =     
    " " ==============================================     
    " " Cursor movement     
    " " ==============================================     
    " "nnoremap gj     
    " "nnoremap gk     
    " "vnoremap gj     
    " "vnoremap gk     
    " "inoremap gj     
    " "inoremap gk     
    " "nnoremap g$     
    " "nnoremap g0     
    " "vnoremap g$     
    " "vnoremap g0     
    " "inoremap g$     
    " "inoremap g0     
    " "nmap :confirm bd     
    " "vmap :confirm bd     
    " "omap :confirm bd     
    " "map! :confirm bd     
    " syntax on     
    "set foldmethod=syntax    
    if (has( " gui_running " ))     
    set nowrap     
    set guioptions+=b     
    colo inkpot     
    else     
    set wrap     
    colo ron     
    endif     
    "let mapleader = " , "    
    if !has("gui_running")     
    set t_Co=8    
    set t_Sf=^[[3%p1%dm     
    set t_Sb=^[[4%p1%dm     
    endif
  • 相关阅读:
    geoServer的安装
    类设计原则
    零散知识点
    JavaScript setTimeOut()方法的一些疑点自己记录
    贴吧表情雨
    Laravel中tosql()是如何返回sql
    关于new static 与 new self的区别(后续有新发现,会继续更新)
    Lumen、Laravel开发问题记录
    文件实时对比,将数据组装入库(SQLITE)
    PHPSTUDY下升级mysql后无法启动
  • 原文地址:https://www.cnblogs.com/dengcongcong/p/8797413.html
Copyright © 2011-2022 走看看