Skip to content

Instantly share code, notes, and snippets.

@BLTuckerDev
BLTuckerDev / base_android_project_deps.toml
Last active December 31, 2024 23:20
A toml I use to quickstart new android projects
[versions]
agp = "8.7.3"
arch-core = "2.2.0"
coil = "3.0.2"
compose-bom = "2024.12.01"
core-ktx = "1.15.0"
core-splashscreen-version = "1.0.1"
coroutines = "1.9.0"
datastore = "1.1.1"
desugar = "2.0.3"
@BLTuckerDev
BLTuckerDev / vimrc
Last active October 18, 2015 21:41
filetype indent plugin on
set tabstop=4 " number of visual spaces per TAB
set softtabstop=4 " number of spaces in tab when editing
set expandtab " tabs are spaces
#These rules are taken from this post:
#http://chris.beams.io/posts/git-commit/
#
#Subject line less than 50 characters
#Separate subject line from the body of the commit with a blank line.
#Capitalize the subject line and do not use punctuation
#Subject line should be in the imperative style
#If applied, this commit will <your commit subject line goes here>
#Examples:
# If applied, this commit will refactor subsystem X for readability