Skip to content

Instantly share code, notes, and snippets.

@brianc118
brianc118 / init.vim
Created February 17, 2018 11:53
neovim dotfile
" Specify a directory for plugins
" - For Neovim: ~/.local/share/nvim/plugged
" - Avoid using standard Vim directory names like 'plugin'
call plug#begin('~/.local/share/nvim/plugged')
" Make sure you use single quotes
Plug 'terryma/vim-multiple-cursors'
Plug 'tpope/vim-commentary'
Plug 'scrooloose/nerdtree'
@brianc118
brianc118 / Makefile
Created May 12, 2017 00:14
MAKEFILE - ATmega324A
# Name: Makefile
# Author: Brian
DEVICE = atmega324a
CLOCK = 8000000
PROGRAMMER = -c avrispmkii
OBJECTS = main.o
FUSES = -U hfuse:w:0xd9:m -U lfuse:w:0x24:m
# Force upload and treat the m324a as a m324pa