Skip to content

Instantly share code, notes, and snippets.

View jweiss's full-sized avatar

Jonathan Weiss jweiss

View GitHub Profile
@jweiss
jweiss / .zshrc
Last active March 13, 2026 21:43
ZSH rc
# history settings
HISTSIZE=10000 # lines kept in memory
SAVEHIST=10000 # lines saved to disk
# make ZSH history behave like bash's history:
alias history='fc -l -${HISTSIZE}'
alias ll="ls -aslFh"
export EDITOR="/usr/local/bin/mate -w"
# Homebrew Ruby
@jweiss
jweiss / .vimrc
Created April 18, 2026 20:45
vimrc
" =============================================================================
" ~/.vimrc — pragmatic config for Unix / Ruby / Python / Julia / Node / Make
" No plugins required for base functionality. Optional plug block at the end.
" =============================================================================
set nocompatible
set encoding=utf-8
scriptencoding utf-8
syntax on
filetype plugin indent on