Skip to content

Instantly share code, notes, and snippets.

View jpizzle34's full-sized avatar

John Zambrano jpizzle34

  • Earth
  • 05:18 (UTC +11:00)
View GitHub Profile
@jpizzle34
jpizzle34 / .vimrc
Last active January 31, 2022 13:26
vimrc
set nocompatible " be iMproved
filetype off " required!
" "set rtp+=~/.vim/bundle/Vundle.vim
"call vundle#begin()
call plug#begin('~/.vim/plugged')
"Plug 'VundleVim/Vundle.vim'
@jpizzle34
jpizzle34 / audit-on-push.yml
Created July 30, 2022 01:47 — forked from LukeMathWalker/audit.yml
GitHub Actions - Rust setup
name: Security audit
on:
push:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
jobs:
security_audit:
runs-on: ubuntu-latest
steps: