]c : next difference
[c : previous difference
do diff obtain
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
" When started as "evim", evim.vim will already have done these settings. | |
if v:progname =~? "evim" | |
finish | |
endif | |
set nocompatible | |
"this comes from vundle | |
filetype off " required |
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
# | |
# CMake configuration | |
# | |
# Please refer to http://www.cmake.org/cmake/help/documentation.html | |
# You may also refer to http://www.cmake.org/cmake/help/syntax.html for a quick | |
# introduction to CMake's syntax. | |
cmake_minimum_required (VERSION 2.8) | |
# The name of our project is "BLE_HEART_RATE". CMakeLists files in this project can |
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
# Convenience function for cd & ls in one go | |
function cs () { | |
cd "$@" && ls | |
} | |
# Like cs above but using z.sh: https://github.com/rupa/z | |
# Adds in a pwd so you can check z has put you where you expected it to! | |
. /etc/z/z.sh |
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
#!/bin/sh | |
set -e | |
COMPILED_BY="Marius Gedminas <[email protected]>" | |
FEATURES= | |
FEATURES="$FEATURES --with-features=huge" # yum, features | |
FEATURES="$FEATURES --enable-multibyte" # vim is *crippled* without this! | |
# (BTW 'big' implies this) | |
FEATURES="$FEATURES --enable-pythoninterp" # most of my plugins use this | |
FEATURES="$FEATURES --enable-rubyinterp" # Command-T wants this |