Skip to content

Instantly share code, notes, and snippets.

View dskindell's full-sized avatar

David Skindell dskindell

  • Amazon
  • Seattle, WA
View GitHub Profile
@dskindell
dskindell / i3_config
Last active March 25, 2019 17:41
Personal i3 configuration/scripts
# This file has been auto-generated by i3-config-wizard(1).
# It will not be overwritten, so edit it as you like.
#
# Should you change your keyboard layout some time, delete
# this file and re-run i3-config-wizard(1).
#
# i3 config file (v4)
#
# Please see http://i3wm.org/docs/userguide.html for a complete reference!
@dskindell
dskindell / .gitconfig
Last active March 22, 2019 17:42
Personal Git configs/aliases/scripts
[user]
name = David Skindell
[core]
editor = vim
excludesfile = ~/.gitignore_global
pager = less -FX
[color]
ui = True
[push]
default = simple
@dskindell
dskindell / .vimrc
Last active August 4, 2022 17:07
Personal .vimrc
filetype off
" Environment {
" Identify platform {
silent function! OSX()
return has('macunix')
endfunction
silent function! LINUX()
return has('unix') && !has('macunix') && !has('win32unix')