Skip to content

Instantly share code, notes, and snippets.

View tekpriest's full-sized avatar
💭
Breathing

Asaju Enitan Michael tekpriest

💭
Breathing
View GitHub Profile
@jesusabarca
jesusabarca / myspacevim.vim
Last active June 7, 2024 08:39
Spacevim bootstrap function
function! myspacevim#before() abort
" Maps leader to ,
let g:mapleader = ','
" Puts new splits below to the right
set splitbelow
set splitright
" Indent line config
augroup indentLine_config
export TERM="xterm-256color" # This sets up colors properly
# workaround as per https://superuser.com/questions/1222867/zsh-completion-functions-broken
FPATH=$HOME/.oh-my-zsh/plugins/git:$HOME/.oh-my-zsh/functions:$HOME/.oh-my-zsh/completions:/usr/share/zsh/site-functions:/usr/share/zsh/$ZSH_VERSION/functions
export FPATH
# set shell
export SHELL=/usr/bin/zsh
@mrk-han
mrk-han / emulator-install-using-avdmanager.md
Last active June 18, 2024 07:51
Installing and creating Emulators with AVDMANAGER (For Continuous Integration Server or Local Use)

Install and Create Emulators using AVDMANAGER and SDKMANAGER

TL;DR

For an emulator that mimics a Pixel 5 Device with Google APIs and ARM architecture (for an M1/M2 Macbook):

  1. List All System Images Available for Download: sdkmanager --list | grep system-images

  2. Download Image: sdkmanager --install "system-images;android-30;google_atd;arm64-v8a"