Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1731805
  • 博文数量: 782
  • 博客积分: 2455
  • 博客等级: 大尉
  • 技术积分: 4140
  • 用 户 组: 普通用户
  • 注册时间: 2011-04-06 21:37
个人简介

Linux ,c/c++, web,前端,php,js

文章分类

全部博文(782)

文章存档

2015年(8)

2014年(28)

2013年(110)

2012年(307)

2011年(329)

分类: LINUX

2011-06-22 11:21:07

使用SecureCRT对Linux vim进行颜色设置
2010-08-26 15:28:28

使用SecureCRT连接服务器时,常常会使用vi或vim打开一些文件。但是打开的文件看起来比较吃力,因为颜色没有像在linux使用vim的那样设置好

Linux的控制台颜色很好设置:Options ->Session Options -> Terminal -> Emulation 中Terminal选择ANSI or linux or xterm,必须钩上 ANSI Colour 

vi的颜色设置,编辑/etc/vimrc文件,

进入编辑 vimrc 后 按 ctrl+G 跳到末尾 复制以下内容,黏贴进去 如下:

  1. " ==============================================   
  2. " General settings   
  3. " ==============================================   
  4. set nocp   
  5. set ru   
  6. set nu   
  7. "set cin   
  8. "set cino = :0g0t0(sus   
  9. set sm   
  10. set ai   
  11. set sw=4   
  12. set ts=4   
  13. set noet   
  14. set lbr   
  15. set hls   
  16. "set backspace = indent , eol , start   
  17. "set whichwrap = b , s , < , > , [ , ]   
  18. "set fo+ = mB   
  19. set selectmode =   
  20. "set mousemodel = popup   
  21. set keymodel =   
  22. "set selection = inclusive   
  23. "set matchpairs+ =   
  24. " ==============================================   
  25. " Cursor movement   
  26. " ==============================================   
  27. "nnoremap gj   
  28. "nnoremap gk   
  29. "vnoremap gj   
  30. "vnoremap gk   
  31. "inoremap gj   
  32. "inoremap gk   
  33. "nnoremap g$   
  34. "nnoremap g0   
  35. "vnoremap g$   
  36. "vnoremap g0   
  37. "inoremap g$   
  38. "inoremap g0   
  39. "nmap :confirm bd   
  40. "vmap :confirm bd   
  41. "omap :confirm bd   
  42. "map! :confirm bd   
  43. syntax on   
  44. set foldmethod=syntax   
  45. if (has( " gui_running " ))   
  46. set nowrap   
  47. set guioptions+=b   
  48. colo inkpot   
  49. else   
  50. set wrap   
  51. colo ron   
  52. endif   
  53. "let mapleader = " , "   
  54. if !has("gui_running")   
  55. set t_Co=8   
  56. set t_Sf=^[[3%p1%dm   
  57. set t_Sb=^[[4%p1%dm   
  58. endif   
阅读(1144) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~