使用SecureCRT对Linux vim进行颜色设置

使用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   

你可能感兴趣的:(linux,secureCRT,vim,颜色,彩色)