zoukankan      html  css  js  c++  java
  • .Xresources 配置文件

    安装rxvt-unicode-256color,如果不是这个版本的话VIM配色会显示不正常。

    ~/.Xresources配置文件如下

     1 !urxvt color scheme:
     2 
     3 URxvt*background: #2B2B2B
     4 URxvt*foreground: #DEDEDE
     5 
     6 URxvt*colorUL: #86a2b0
     7 
     8 ! black
     9 URxvt*color0  : #2E3436
    10 URxvt*color8  : #555753
    11 ! red
    12 URxvt*color1  : #CC0000
    13 URxvt*color9  : #EF2929
    14 ! green
    15 URxvt*color2  : #4E9A06
    16 URxvt*color10 : #8AE234
    17 ! yellow
    18 URxvt*color3  : #C4A000
    19 URxvt*color11 : #FCE94F
    20 ! blue
    21 URxvt*color4  : #3465A4
    22 URxvt*color12 : #729FCF
    23 ! magenta
    24 URxvt*color5  : #75507B
    25 URxvt*color13 : #AD7FA8
    26 ! cyan
    27 URxvt*color6  : #06989A
    28 URxvt*color14 : #34E2E2
    29 ! white
    30 URxvt*color7  : #D3D7CF
    31 URxvt*color15 : #EEEEEC
    32 
    33 !urxvt fonts: 
    34 
    35 URxvt*font: xft:source code pro:pixelsize=16
    36 URxvt*boldFont: xft:source code pro:bold:pixelsize=16
    37 
    38 
    39 !urxvt extensions:
    40 
    41 !URxvt.perl-ext-common:  default,matcher,tabbedex
    42 
    43 !enabling clickable links:
    44 
    45 URxvt.urlLauncher:      /usr/bin/google-chrome
    46 URxvt.matcher.button:   1 
    47 
    48 !urxvt scrolling options and cursor style:
    49 
    50 URxvt*saveLines: 12000
    51 URxvt*scrollstyle:plain
    52 URxvt*scrollBar: false
    53 URxvt*cursorBlink: true
    54 URxvt*cursorUnderline: true
    55 
    56 ! urxvt tabs settings:
    57 
    58 URxvt.tabbed.tabbar-fg: 2
    59 URxvt.tabbed.tabbar-bg: 0
    60 URxvt.tabbed.tab-fg: 2
    61 URxvt.tabbed.tab-bg: 8
    62 URxvt.tabbed.autohide:  yes
    63 URxvt.tabbed.new-button:  no
    64 URxvt.tabbed.title: no
  • 相关阅读:
    unity3d 启用某层设置
    Unity同 iOS,Android数据交互
    Unity发布EXE去掉边框生成安装程序的最简单方法
    判断物体相对自己的方位
    相机Culling Mask 用法
    LitJson 用法
    Unity3d Attribute 总结
    unity3d shader 预定义着色器预处理宏
    (转)傅里叶分析 变换等
    Shaders: ShaderLab & Fixed Function shaders
  • 原文地址:https://www.cnblogs.com/bugershang/p/3494487.html
Copyright © 2011-2022 走看看