33 lines
1.4 KiB
TOML
33 lines
1.4 KiB
TOML
|
# 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 = [ "vars.toml" ]
|
||
|
|
||
|
# An array of post install shell commands
|
||
|
# hooks = [ "" ]
|
||
|
|
||
|
[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 = { source = "alacritty", target = ".config/alacritty" }
|
||
|
nvim = { source = "nvim", target = ".config/nvim" }
|
||
|
sway = { source = "sway", target = ".config/sway" }
|
||
|
waybar = { source = "waybar", target = ".config/waybar" }
|
||
|
wofi = { source = "wofi", target = ".config/wofi" }
|
||
|
|
||
|
# zsh
|
||
|
p10k = { source = "zsh/p10k.zsh", target = ".p10k.zsh" }
|
||
|
zsh_aliases = { source = "zsh/zsh_aliases", target = ".zsh_aliases" }
|
||
|
zshenv = { source = "zsh/zshenv", target = ".zshenv" }
|
||
|
zshrc = { source = "zsh/zshrc", target = ".zshrc" }
|
||
|
|
||
|
# vim
|
||
|
vimrc = { source = "vim/vimrc", target = ".vimrc" }
|
||
|
vimrc_colors = { source = "vim/vimrc.colors", target = ".vimrc.colors" }
|
||
|
vimrc_lightline = { source = "vim/vimrc.lightline", target = ".vimrc.lightline" }
|
||
|
vimrc_plugins = { source = "vim/vimrc.plugins", target = ".vimrc.plugins" }
|