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

王朝system·作者佚名  2008-06-01
宽屏版  字体: |||超大  

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

vi的颜色设置,编辑~/.vimrc文件,如下:(^[的输入方式是Ctrl+v然后Ctrl+[)

1 ” ==============================================

2 ” General settings

3 ” ==============================================

4

5 set nocp

6 set ru

7 set nu

8 ” 使用cindent

9 “set cin

10 “set cino = :0g0t0(sus

11

12 set sm

13 set ai

14 ” 缩近

15 set sw=4

16 set ts=4

17 ” 不展开tab为空格,反之set et

18 set noet

19

20 set lbr

21 set hls

22 “set backspace = indent , eol , start

23 “set whichwrap = b , s , < , > , [ , ]

24 “set fo+ = mB

25 set selectmode =

26 “set mousemodel = popup

27 set keymodel =

28 “set selection = inclusive

29 “set matchpairs+ =

30

31 ” ==============================================

32 ” Cursor movement

33 ” ==============================================

34 “nnoremap gj

35 “nnoremap gk

36 “vnoremap gj

37 “vnoremap gk

38 “inoremap gj

39 “inoremap gk

40

41 “nnoremap g$

42 “nnoremap g0

43 “vnoremap g$

44 “vnoremap g0

45 “inoremap g$

46 “inoremap g0

47

48 “nmap :confirm bd

49 “vmap :confirm bd

50 “omap :confirm bd

51 “map! :confirm bd

52

53 ” 打开语法高亮

54 syntax on

55 ” 使用语法进行折叠

56 set foldmethod=syntax

57

58 if (has( ” gui_running ” ))

59 set nowrap

60 set guioptions+=b

61 colo inkpot

62 else

63 set wrap

64 colo ron

65 endif

66

67 ” 设置leader的快捷键,原来的“\”太远了,而且位置还不固定

68 “let mapleader = ” , ”

69

70 if !has(”gui_running”)

71 set t_Co=8

72 set t_Sf=^[[3%p1%dm

73 set t_Sb=^[[4%p1%dm

74 endif

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
© 2005- 王朝网络 版权所有