This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** The Google Chrome Custom Style **/ | |
| body, div {font-family: "Microsoft Yahei" !important;} | |
| table, tbody, th, td {font-family: "Microsoft Yahei" !important;} | |
| h1, h2, h3, h4 ,h5, h6 {font-family: "Microsoft Yahei" !important;} | |
| ul, ol, li {font-family: "Microsoft Yahei" !important;} | |
| p, a, input {font-family: "Microsoft Yahei" !important;} | |
| #wrapper {font-family: "Microsoft Yahei" !important;} | |
| #content {font-family: "Microsoft Yahei" !important;} | |
| #containner {font-family: "Microsoft Yahei" !important;} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " Basics { | |
| set nocompatible | |
| set background=dark | |
| syntax on | |
| " } | |
| " General { | |
| filetype plugin indent on | |
| set backspace=indent,eol,start | |
| set encoding=utf-8 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| alias code='cd /cygdrive/n/code' | |
| alias ls='ls --color' | |
| # Candy colored terminal | |
| # write on 2012/08 | |
| __git_ps1() { | |
| local b="$(git symbolic-ref HEAD 2>/dev/null)" | |
| if [ -n "$b" ]; then | |
| printf "(%s)" "${b##refs/heads/}" |
NewerOlder