Skip to content

Instantly share code, notes, and snippets.

View myanbin's full-sized avatar

Ma Yanbin myanbin

View GitHub Profile
@myanbin
myanbin / Custom.css
Last active November 22, 2015 14:57
谷歌浏览器用户自定义样式表
/** 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;}
@myanbin
myanbin / .vimrc
Created August 15, 2012 04:55
我的终端下的Vim配置
" Basics {
set nocompatible
set background=dark
syntax on
" }
" General {
filetype plugin indent on
set backspace=indent,eol,start
set encoding=utf-8
@myanbin
myanbin / .bashrc
Created August 15, 2012 04:52
彩色终端
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/}"