Skip to content

Instantly share code, notes, and snippets.

@cybercypher
cybercypher / .vimrc
Created April 2, 2018 21:26 — forked from simonista/.vimrc
A basic .vimrc file that will serve as a good template on which to build.
" Don't try to be vi compatible
set nocompatible
" Helps force plugins to load correctly when it is turned back on below
filetype off
" TODO: Load plugins here (pathogen or vundle)
" Turn on syntax highlighting
syntax on
@cybercypher
cybercypher / .bashrc
Last active September 14, 2022 11:49
mobaxterm and vagrant ssh
vagrant() {
if [[ $@ == "ssh" ]]; then
command vagrant ssh-config > vagrant-ssh-config && ssh -A -F vagrant-ssh-config default
else
command vagrant "$@"
fi
}