Skip to content

Instantly share code, notes, and snippets.

@torresjrjr
torresjrjr / .vimrc
Created September 27, 2019 21:17
My .vimrc
" ~/.vimrc
" @torresjrjr
" ===========
" Settings
" --------
set nocompatible " Turn off compatibility with Vi.
syntax on " Turn on syntax highlighting.
@torresjrjr
torresjrjr / helloworld.py
Created April 23, 2019 16:55
Python Hello World
print("Hello World!")