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
  • 相关阅读:
    Maven的生命周期
    Spring Framework: @RestController vs @Controller
    HTMl5的sessionStorage和localStorage
    Gradle下载类库源码
    Spring Boot, Java Config
    NodeJS简记
    8 commands to check cpu information on Linux
    守护进程之守护进程的惯例
    守护进程之单实例守护进程
    守护进程之出错记录
  • 原文地址:https://www.cnblogs.com/dengcongcong/p/8797413.html
Copyright © 2011-2022 走看看