ebde4edc0e
This format string is being used in my i3 config and in my alias for creating a gPaste. I figured it'd be nice to set a variable that defines the format. Future me: run `man date` to see what format options are supported.
14 lines
402 B
Bash
14 lines
402 B
Bash
EDITOR=emacs
|
|
BROWSER=google-chrome
|
|
NIXIFY="$HOME/programming/nixify"
|
|
DATE_FMT=%b-%d-%Y_%T # my preferred date formatting string used for generated filename
|
|
|
|
# commonly used config files
|
|
v="$HOME/.config/nvim/init.vim"
|
|
e="$HOME/.emacs.d/init.el"
|
|
z="$HOME/.zshrc"
|
|
a="$HOME/aliases.zsh"
|
|
f="$HOME/functions.zsh"
|
|
l="$HOME/variables.zsh" # v is taken by vim
|
|
x="$HOME/.xsessionrc"
|
|
i="$HOME/.config/i3/config"
|