├── .chezmoi.toml.tmpl ├── .chezmoiignore ├── README.markdown ├── bin ├── executable_anidb-filenames ├── executable_aslan ├── executable_doom-install ├── executable_dwim ├── executable_hashmatch ├── executable_kick-pleroma ├── executable_store ├── executable_t5secdat ├── executable_vargr └── executable_ytget ├── dot_config └── git │ └── allowed_signers.tmpl ├── dot_doom.d ├── config.el.tmpl ├── init.el └── packages.el ├── dot_gitconfig.tmpl ├── dot_nixpkgs └── config.nix ├── dot_tmux.conf ├── dot_vimrc ├── dot_zshenv ├── dot_zshrc ├── private_dot_local └── private_share │ └── python │ └── personal-packages │ └── t5secdatlib.py └── private_dot_ssh └── config.tmpl /.chezmoi.toml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrucadu/dotfiles/HEAD/.chezmoi.toml.tmpl -------------------------------------------------------------------------------- /.chezmoiignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrucadu/dotfiles/HEAD/.chezmoiignore -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrucadu/dotfiles/HEAD/README.markdown -------------------------------------------------------------------------------- /bin/executable_anidb-filenames: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrucadu/dotfiles/HEAD/bin/executable_anidb-filenames -------------------------------------------------------------------------------- /bin/executable_aslan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrucadu/dotfiles/HEAD/bin/executable_aslan -------------------------------------------------------------------------------- /bin/executable_doom-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrucadu/dotfiles/HEAD/bin/executable_doom-install -------------------------------------------------------------------------------- /bin/executable_dwim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrucadu/dotfiles/HEAD/bin/executable_dwim -------------------------------------------------------------------------------- /bin/executable_hashmatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrucadu/dotfiles/HEAD/bin/executable_hashmatch -------------------------------------------------------------------------------- /bin/executable_kick-pleroma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrucadu/dotfiles/HEAD/bin/executable_kick-pleroma -------------------------------------------------------------------------------- /bin/executable_store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrucadu/dotfiles/HEAD/bin/executable_store -------------------------------------------------------------------------------- /bin/executable_t5secdat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrucadu/dotfiles/HEAD/bin/executable_t5secdat -------------------------------------------------------------------------------- /bin/executable_vargr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrucadu/dotfiles/HEAD/bin/executable_vargr -------------------------------------------------------------------------------- /bin/executable_ytget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrucadu/dotfiles/HEAD/bin/executable_ytget -------------------------------------------------------------------------------- /dot_config/git/allowed_signers.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrucadu/dotfiles/HEAD/dot_config/git/allowed_signers.tmpl -------------------------------------------------------------------------------- /dot_doom.d/config.el.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrucadu/dotfiles/HEAD/dot_doom.d/config.el.tmpl -------------------------------------------------------------------------------- /dot_doom.d/init.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrucadu/dotfiles/HEAD/dot_doom.d/init.el -------------------------------------------------------------------------------- /dot_doom.d/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrucadu/dotfiles/HEAD/dot_doom.d/packages.el -------------------------------------------------------------------------------- /dot_gitconfig.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrucadu/dotfiles/HEAD/dot_gitconfig.tmpl -------------------------------------------------------------------------------- /dot_nixpkgs/config.nix: -------------------------------------------------------------------------------- 1 | { 2 | allowUnfree = true; 3 | } 4 | -------------------------------------------------------------------------------- /dot_tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrucadu/dotfiles/HEAD/dot_tmux.conf -------------------------------------------------------------------------------- /dot_vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrucadu/dotfiles/HEAD/dot_vimrc -------------------------------------------------------------------------------- /dot_zshenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrucadu/dotfiles/HEAD/dot_zshenv -------------------------------------------------------------------------------- /dot_zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrucadu/dotfiles/HEAD/dot_zshrc -------------------------------------------------------------------------------- /private_dot_local/private_share/python/personal-packages/t5secdatlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrucadu/dotfiles/HEAD/private_dot_local/private_share/python/personal-packages/t5secdatlib.py -------------------------------------------------------------------------------- /private_dot_ssh/config.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrucadu/dotfiles/HEAD/private_dot_ssh/config.tmpl --------------------------------------------------------------------------------