Skip to content

Instantly share code, notes, and snippets.

@tomaslucas
tomaslucas / emoji-list.md
Created November 28, 2024 06:48 — forked from ricealexander/emoji-list.md
Comprehensive list of GitHub-supported emojis
@tomaslucas
tomaslucas / .zshrc
Created September 16, 2023 22:09 — forked from lukepighetti/.zshrc
marksman environment for note taking https://youtu.be/8GQKOLh_V5E
# launch daily notes with `notes`
# launch specific notes with `notes woodworking`
# this is a cloud synced file, so it's live on all my devices
function notes(){
SUBJECT="${1:=daily}"
if [ -z "$SUBJECT" ]
then
(cd ~/Documents/notes && hx NOTES.md)
else
(cd ~/Documents/notes && hx "${SUBJECT:u}.md" NOTES.md)
@tomaslucas
tomaslucas / .vimrc
Created March 12, 2022 17:40 — forked from miguelgrinberg/.vimrc
My .vimrc configuration for working in Python with vim
" plugins
let need_to_install_plugins = 0
if empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
let need_to_install_plugins = 1
endif
call plug#begin()
Plug 'tpope/vim-sensible'