--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/bin/eq Wed Aug 01 11:40:44 2018 +0000
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+# if you don't have the script's cwd set, you get XML errors
+export WINEPREFIX=$HOME/.wine/
+
+cd ~/.wine/drive_c/Program\ Files/Sony/EverQuest
+
+# Bind to one core of the processor and launch.
+# The client will spew a lot of errors, especially every time
+# you target a mob, hence the stdout/stderr redirect.
+# You probably want to leave off the 2>/dev/null until you're satisfied
+# everything is working.
+# taskset -c 0 padsp wine eqgame.exe patchme 2>/dev/null
+taskset -c 0 padsp wine eqgame.exe patchme
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/vim/bundle/redact-pass/doc/redact_pass.txt Wed Aug 01 11:40:44 2018 +0000
@@ -0,0 +1,1 @@
+/home/sjl/src/password-store/contrib/vim/redact_pass.txt
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/vim/bundle/redact-pass/plugin/redact_pass.vim Wed Aug 01 11:40:44 2018 +0000
@@ -0,0 +1,1 @@
+/home/sjl/src/password-store/contrib/vim/redact_pass.vim
\ No newline at end of file
--- a/vim/vimrc Thu Jul 26 15:17:30 2018 +0000
+++ b/vim/vimrc Wed Aug 01 11:40:44 2018 +0000
@@ -2268,57 +2268,6 @@
endfunction
" }}}
-" Pass {{{
-
-" https://github.com/milki/password-store/blob/master/contrib/vim/noplaintext.vim
-"
-" Prevent various Vim features from keeping the contents of pass(1) password
-" files (or any other purely temporary files) in plaintext on the system.
-"
-" Either append this to the end of your .vimrc, or install it as a plugin with
-" a plugin manager like Tim Pope's Pathogen.
-"
-" Author: Tom Ryder <tom@sanctum.geek.nz>
-"
-
-" Don't backup files in temp directories or shm
-if exists('&backupskip')
- set backupskip+=/tmp/*,$TMPDIR/*,$TMP/*,$TEMP/*,*/shm/*
-endif
-
-" Don't keep swap files in temp directories or shm
-if has('autocmd')
- augroup swapskip
- autocmd!
- silent! autocmd BufNewFile,BufReadPre
- \ /tmp/*,$TMPDIR/*,$TMP/*,$TEMP/*,*/shm/*
- \ setlocal noswapfile
- augroup END
-endif
-
-" Don't keep undo files in temp directories or shm
-if has('persistent_undo') && has('autocmd')
- augroup undoskip
- autocmd!
- silent! autocmd BufWritePre
- \ /tmp/*,$TMPDIR/*,$TMP/*,$TEMP/*,*/shm/*
- \ setlocal noundofile
- augroup END
-endif
-
-" Don't keep viminfo for files in temp directories or shm
-if has('viminfo')
- if has('autocmd')
- augroup viminfoskip
- autocmd!
- silent! autocmd BufNewFile,BufReadPre
- \ /tmp/*,$TMPDIR/*,$TMP/*,$TEMP/*,*/shm/*
- \ setlocal viminfo=
- augroup END
- endif
-endif
-
-" }}}
" Python-Mode {{{
let g:pymode_doc = 1