Skip to content

Instantly share code, notes, and snippets.

View evokateur's full-sized avatar

Wesley C. Hinkle evokateur

  • MultiEmployer.com
  • Oakland CA
  • 00:25 (UTC -07:00)
View GitHub Profile
@evokateur
evokateur / ssh-pf.sh
Last active November 13, 2022 16:24
lazy port forwarding
#!/bin/bash
echo "Hello, footpad!"
me=`basename "$0"`
socket_path=~/"${me}".socket
if [ -z "$1" ] || [ "$1" == "open" ]
then
if [ -f "${socket_path}" ]
@evokateur
evokateur / configure-vim.sh
Last active September 11, 2021 13:33
script with the things I do to make vim the way I like it
#!/bin/bash
if [ -z "$1" ]
then
mkdir -p ~/.vim/autoload ~/.vim/bundle && curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim
if [ ! -d ~/.vim/bundle/nerdtree ]; then
git clone https://github.com/scrooloose/nerdtree.git ~/.vim/bundle/nerdtree
fi