├── .chezmoiroot ├── .editorconfig ├── LICENSE ├── README.md └── home ├── .chezmoi.yaml.tmpl ├── .chezmoiexternal.toml ├── dot_config ├── atuin │ └── config.toml ├── bat │ └── config ├── curl │ └── dot_curlrc ├── fish │ ├── conf.d │ │ ├── 00-env.fish.tmpl │ │ ├── 10-homebrew.fish.tmpl │ │ ├── 20-mise.fish.tmpl │ │ ├── abbr.fish │ │ ├── atuin.fish.tmpl │ │ ├── curl.fish.tmpl │ │ ├── krew.fish.tmpl │ │ ├── starship.fish.tmpl │ │ └── zoxide.fish.tmpl │ ├── config.fish.tmpl │ ├── fish_plugins │ └── functions │ │ ├── commit.fish │ │ ├── kubecolor.fish.tmpl │ │ ├── kubectl.fish.tmpl │ │ ├── ms.fish.tmpl │ │ ├── tf.fish.tmpl │ │ └── watch.fish.tmpl ├── mise │ └── config.toml.tmpl ├── starship.toml.tmpl └── topgrade.toml ├── dot_gitconfig.tmpl ├── dot_gitignore_global.tmpl ├── dot_nanorc └── private_dot_ssh └── private_config.tmpl /.chezmoiroot: -------------------------------------------------------------------------------- 1 | home 2 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedr0p/dotfiles/HEAD/.editorconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedr0p/dotfiles/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedr0p/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /home/.chezmoi.yaml.tmpl: -------------------------------------------------------------------------------- 1 | format: yaml 2 | data: 3 | name: "Devin Buhl" 4 | -------------------------------------------------------------------------------- /home/.chezmoiexternal.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedr0p/dotfiles/HEAD/home/.chezmoiexternal.toml -------------------------------------------------------------------------------- /home/dot_config/atuin/config.toml: -------------------------------------------------------------------------------- 1 | sync_address = "https://atuin.turbo.ac" 2 | enter_accept = false 3 | -------------------------------------------------------------------------------- /home/dot_config/bat/config: -------------------------------------------------------------------------------- 1 | --theme Dracula 2 | --paging=never 3 | --style plain 4 | -------------------------------------------------------------------------------- /home/dot_config/curl/dot_curlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedr0p/dotfiles/HEAD/home/dot_config/curl/dot_curlrc -------------------------------------------------------------------------------- /home/dot_config/fish/conf.d/00-env.fish.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedr0p/dotfiles/HEAD/home/dot_config/fish/conf.d/00-env.fish.tmpl -------------------------------------------------------------------------------- /home/dot_config/fish/conf.d/10-homebrew.fish.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedr0p/dotfiles/HEAD/home/dot_config/fish/conf.d/10-homebrew.fish.tmpl -------------------------------------------------------------------------------- /home/dot_config/fish/conf.d/20-mise.fish.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedr0p/dotfiles/HEAD/home/dot_config/fish/conf.d/20-mise.fish.tmpl -------------------------------------------------------------------------------- /home/dot_config/fish/conf.d/abbr.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedr0p/dotfiles/HEAD/home/dot_config/fish/conf.d/abbr.fish -------------------------------------------------------------------------------- /home/dot_config/fish/conf.d/atuin.fish.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedr0p/dotfiles/HEAD/home/dot_config/fish/conf.d/atuin.fish.tmpl -------------------------------------------------------------------------------- /home/dot_config/fish/conf.d/curl.fish.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedr0p/dotfiles/HEAD/home/dot_config/fish/conf.d/curl.fish.tmpl -------------------------------------------------------------------------------- /home/dot_config/fish/conf.d/krew.fish.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedr0p/dotfiles/HEAD/home/dot_config/fish/conf.d/krew.fish.tmpl -------------------------------------------------------------------------------- /home/dot_config/fish/conf.d/starship.fish.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedr0p/dotfiles/HEAD/home/dot_config/fish/conf.d/starship.fish.tmpl -------------------------------------------------------------------------------- /home/dot_config/fish/conf.d/zoxide.fish.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedr0p/dotfiles/HEAD/home/dot_config/fish/conf.d/zoxide.fish.tmpl -------------------------------------------------------------------------------- /home/dot_config/fish/config.fish.tmpl: -------------------------------------------------------------------------------- 1 | set fish_greeting "" 2 | -------------------------------------------------------------------------------- /home/dot_config/fish/fish_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedr0p/dotfiles/HEAD/home/dot_config/fish/fish_plugins -------------------------------------------------------------------------------- /home/dot_config/fish/functions/commit.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedr0p/dotfiles/HEAD/home/dot_config/fish/functions/commit.fish -------------------------------------------------------------------------------- /home/dot_config/fish/functions/kubecolor.fish.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedr0p/dotfiles/HEAD/home/dot_config/fish/functions/kubecolor.fish.tmpl -------------------------------------------------------------------------------- /home/dot_config/fish/functions/kubectl.fish.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedr0p/dotfiles/HEAD/home/dot_config/fish/functions/kubectl.fish.tmpl -------------------------------------------------------------------------------- /home/dot_config/fish/functions/ms.fish.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedr0p/dotfiles/HEAD/home/dot_config/fish/functions/ms.fish.tmpl -------------------------------------------------------------------------------- /home/dot_config/fish/functions/tf.fish.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedr0p/dotfiles/HEAD/home/dot_config/fish/functions/tf.fish.tmpl -------------------------------------------------------------------------------- /home/dot_config/fish/functions/watch.fish.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedr0p/dotfiles/HEAD/home/dot_config/fish/functions/watch.fish.tmpl -------------------------------------------------------------------------------- /home/dot_config/mise/config.toml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedr0p/dotfiles/HEAD/home/dot_config/mise/config.toml.tmpl -------------------------------------------------------------------------------- /home/dot_config/starship.toml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedr0p/dotfiles/HEAD/home/dot_config/starship.toml.tmpl -------------------------------------------------------------------------------- /home/dot_config/topgrade.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedr0p/dotfiles/HEAD/home/dot_config/topgrade.toml -------------------------------------------------------------------------------- /home/dot_gitconfig.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedr0p/dotfiles/HEAD/home/dot_gitconfig.tmpl -------------------------------------------------------------------------------- /home/dot_gitignore_global.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedr0p/dotfiles/HEAD/home/dot_gitignore_global.tmpl -------------------------------------------------------------------------------- /home/dot_nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedr0p/dotfiles/HEAD/home/dot_nanorc -------------------------------------------------------------------------------- /home/private_dot_ssh/private_config.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedr0p/dotfiles/HEAD/home/private_dot_ssh/private_config.tmpl --------------------------------------------------------------------------------