This file contains 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
# First clone the repo as above | |
git clone git://github.com/alloy/macvim.git | |
# Enter src directory | |
cd macvim/src | |
# configure with the flags you want | |
./configure --with-features=huge \ | |
--enable-rubyinterp \ | |
--enable-pythoninterp \ |
This file contains 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
#!/usr/bin/python3 | |
# -*- coding: utf-8 -*- | |
import argparse | |
import shutil | |
from urllib import request | |
import zipfile | |
def replace_css(file, css): | |
zin = zipfile.ZipFile(file) |
This file contains 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
@font-face { | |
font-family: "DroidFont", serif, sans-serif; | |
font-weight: normal; | |
font-style: normal; | |
src: url(res:///system/fonts/DroidSansFallback.ttf); | |
} | |
@font-face { | |
font-family: "DroidFont", serif, sans-serif; | |
font-weight: bold; | |
font-style: normal; |