Skip to content

Instantly share code, notes, and snippets.

" NOTE you must separate sites with ", " not a simple "," (no quotes).
set disablesites=www.google.com/reader/view, docs.google.com/spreadsheet, github.com, mail.google.com
map j 10j
map k 10k
map R <C-r>
map <M-R> R
map J gt
*~
.DS_Store
# Compiled source #
*.com
*.class
*.dll
*.exe
*.o
*.so
# $pdflatex = 'lualatex -interaction=nonstopmode -synctex=1 %O %S';
$pdflatex = 'pdflatex -interaction=nonstopmode -synctex=1 %O %S';
$pdf_previewer = 'open -a skim';
# $clean_ext = 'bbl rel %R-blx.bib %R.synctex.gz';
$clean_ext = 'acn acr alg aux bbl bcf blg brf fdb_latexmk fls glg glo gls idx ilg ind ist lof log lot out rel run.xml synctex.gz';
@rlridenour
rlridenour / mark
Created August 9, 2017 12:29
Open files in Marked 2
#!/bin/sh
if [ $1 ]; then
open -a "Marked 2" $1;
else
open -a "Marked 2";
fi
@rlridenour
rlridenour / svimrc
Last active November 30, 2016 20:19
Config file for sVim
" Settings
set nosmoothscroll
let fullpagescrollpercent = 70
let lastactivetablimit = 50;
let lastclosedtablimit = 50;
let scrollduration = 25
let scrollstep = 65
let zoomstep = 15
let hintcharacters = "1234567890";
let homeurl = "http://google.com";
@rlridenour
rlridenour / cvimrc
Last active June 15, 2016 14:21
Config file for cVim
let completionengines = ["google", "amazon", "imdb"]
let nextmatchpattern = "((?!first)(next|>|›|»|forward| )+)"
let fullpagescrollpercent = 65
let searchalias g = "google" " Create a shortcut for search engines.
" For example, typing ':tabnew g example'
" would act the same way as ':tabnew google example'
#coding: utf-8
import keychain
import console
import editor
import time
import re
import requests
import json
#coding: utf-8
import keychain
import console
import editor
import time
import re
import requests
import json
<!-- copy this to YOUR_THEME.tmTheme-->
<dict>
<key>name</key>
<string>diff: deleted</string>
<key>scope</key>
<string>markup.deleted</string>
<key>settings</key>
<dict>
<key>background</key>
<string>#EAE3CA</string>