add config file: aria2 asdf zellij zsh bash starship Initial commit Changes to be committed: new file: .gitignore new file: app/aria2/AriaNg_config.json new file: app/aria2/AriaNg_config.toml new file: bombadil.toml new file: common/shell/asdf/asdfrc new file: common/shell/bash/bash.toml new file: common/shell/bash/bashrc new file: common/shell/shell.toml new file: common/shell/starship/starship.toml new file: common/shell/zellij/.config.kdl.swp new file: common/shell/zellij/config.kdl new file: common/shell/zellij/themes/README.md new file: common/shell/zellij/themes/catppuccin.kdl new file: common/shell/zellij/themes/dracula.kdl new file: common/shell/zellij/themes/everforest-dark.kdl new file: common/shell/zellij/themes/everforest-light.kdl new file: common/shell/zellij/themes/gruvbox.kdl new file: common/shell/zellij/themes/kanagawa.kdl new file: common/shell/zellij/themes/molokai-dark.kdl new file: common/shell/zellij/themes/nord.kdl new file: common/shell/zellij/themes/one-half-dark.kdl new file: common/shell/zellij/themes/solarized-dark.kdl new file: common/shell/zellij/themes/solarized-light.kdl new file: common/shell/zellij/themes/tokyo-night-dark.kdl new file: common/shell/zellij/themes/tokyo-night-light.kdl new file: common/shell/zellij/themes/tokyo-night-storm.kdl new file: common/shell/zellij/themes/tokyo-night.kdl new file: common/shell/zsh/check.sh new file: common/shell/zsh/zsh.toml new file: common/shell/zsh/zshenv new file: common/shell/zsh/zshrc new file: scripts/check.sh
39 lines
1.1 KiB
TOML
39 lines
1.1 KiB
TOML
# {dotfiles}/bombadil.toml
|
|
|
|
# Path to your dotfiles relative to your $HOME directory
|
|
dotfiles_dir = "code/bombadil"
|
|
|
|
import = [
|
|
{ path = "common/shell/zsh/zsh.toml" } ,
|
|
{ path = "common/shell/bash/bash.toml" }
|
|
]
|
|
|
|
|
|
|
|
[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 = [ "vars.toml" ]
|
|
|
|
# An array of post install shell commands
|
|
#posthooks = [ "sway reload" ]
|
|
|
|
[settings.dots]
|
|
|
|
# A dot entry representing a symlink, `source` is relative to `dotfiles_dir`
|
|
# and `target` shall be relative to $HOME directory or absolute.
|
|
#aria2 = { source = "aria2/AriaNg_config.json", target = ".config/aria2/AriaNg_config.json" }
|
|
#zsh = { source = "common/shell/zsh/zshrc", target = ".zshrc" }
|
|
#bash = { source = "common/shell/bash/bashrc", target = ".zshrc" }
|
|
#alacritty = { source = "alacritty.yml", target = ".config/alacritty/alacritty.yml" }
|
|
|
|
|
|
[profiles.shell]
|
|
extra_profiles = [ "bash", "zsh" ]
|
|
|
|
|
|
|
|
|
|
[ profiles.shell-simple]
|
|
extra_profiles = [ "bash-simple", "zsh-simple", "vim-simple" ]
|