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
  • 相关阅读:
    算法与数据结构(二):排序
    冒泡排序
    责任型模式一:Observer(观察者)模式
    接口型模式(二)Bridge(桥接)模式
    内部排序:归并排序
    mean函数
    cross validation
    内存不足导致的java.lang.OutOfMemoryError: java heap space引出java工程启动参数设置
    angularjs 的hello world
    Nexus私库上传jar文件
  • 原文地址:https://www.cnblogs.com/bugershang/p/3494487.html
Copyright © 2011-2022 走看看