dotfiles/bombadil.toml

58 lines
1.7 KiB
TOML
Raw Normal View History

2021-06-14 19:20:50 +00:00
# Path to your dotfiles relative to your $HOME directory
dotfiles_dir = "src/dotfiles"
[settings]
# An array of toml files paths containing the variables to inject in your templatized dotfiles
# You can have multiple var files as long as variable names does not colide.
vars = [ "dark.toml", "vars.toml" ]
2021-06-14 19:20:50 +00:00
# An array of post install shell commands
# hooks = [ "" ]
[profiles.light]
vars = [ "light.toml" ]
[profiles.dark]
2022-10-17 17:36:20 +00:00
vars = [ "dark.toml" ]
2021-06-14 19:20:50 +00:00
[settings.dots]
# A dot entry representing a symlink, `source` is relative to `dotfiles_dir`
# and `target` shall be relative to $HOME directory or absolute.
# You can have as many dot entry as you want, linking files or directories
# alacritty
alacritty = { source = "alacritty", target = ".config/alacritty" }
2022-04-03 23:29:20 +00:00
# broot
broot = { source = "broot", target = ".config/broot" }
2021-06-16 21:29:32 +00:00
# git
2021-06-17 21:22:58 +00:00
git_template = { source = "git_template", target = ".git_template" }
2021-06-17 21:22:17 +00:00
gitconfig = { source = "gitconfig", target = ".gitconfig" }
2021-06-16 21:29:32 +00:00
gitignore = { source = "gitignore", target = ".gitignore" }
2022-04-11 21:22:28 +00:00
gitui = { source = "gitui", target = ".config/gitui" }
2021-07-23 21:55:42 +00:00
# gpg
gpg_agent = { source = "gnupg/gpg-agent.conf", target = ".gnupg/gpg-agent.conf" }
2021-09-07 16:34:40 +00:00
# helix
helix = { source = "helix", target = ".config/helix" }
2022-05-31 15:37:19 +00:00
# file handlers
mimeapps = { source = "mimeapps.list", target = ".config/mimeapps.list" }
2022-05-31 15:37:19 +00:00
# navi
navi = { source = "navi", target = ".config/navi" }
# tmux
tmux = { source = "tmux", target = ".config/tmux" }
tmux_conf = { source = "tmux.conf", target = ".tmux.conf" }
2023-02-27 23:29:58 +00:00
# zellij
zellij = { source = "zellij", target = ".config/zellij" }
# zsh
zsh = { source = "aliases", target = ".aliases" }
zshenv = { source = "zshenv", target = ".zshenv" }
zshrc = { source = "zshrc", target = ".zshrc" }