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

 

posted @ 2018-04-11 18:02  邓聪聪  阅读(593)  评论(0编辑  收藏  举报