Files
dotfiles/config.yaml
CramMK a3f7d31c50 Fix OBSD zsh theme
temporarily use legacy 'marc-theme'
2020-02-05 16:49:31 +01:00

128 lines
2.0 KiB
YAML

actions:
pre:
vundle-install: test -e ~/.vim/bundle/Vundle.vim || (mkdir -p ~/.vim/bundle; git
clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim )
vundle-refresh: vim +VundleClean! +VundleInstall +VundleInstall! +qall
font-cache: fc-cache -f -v
xresources-reload: xrdb ~/.Xresources
config:
backup: true
create: true
dotpath: dotfiles
dotfiles:
f_bashrc:
src: bashrc
dst: ~/.bashrc
f_vimrc:
src: vimrc
dst: ~/.vimrc
actions:
- vundle-install
- vundle-refresh
f_gitconfig:
src: gitconfig
dst: ~/.gitconfig
f_xresources:
src: Xresources
dst: ~/.Xresources
actions:
- xresources-reload
f_i3_config:
src: i3_config
dst: ~/.config/i3/config
f_i3status_config:
src: i3status_config
dst: ~/.config/i3status/config
actions:
- font-cache
f_gdbinit:
src: gdbinit
dst: ~/.gdbinit
f_xinitrc:
src: xinitrc
dst: ~/.xinitrc
f_zshrc:
src: zshrc
dst: ~/.zshrc
d_oh-my-zsh:
src: oh-my-zsh
dst: ~/.oh-my-zsh
f_zsh_theme:
src: zsh
dst: ~/.oh-my-zsh/themes
d_fonts:
src: fonts
dst: ~/.local/share/fonts
profiles:
home:
include:
- zsh
- vim
- x11
- i3
- font
- git
- gdb
laptop:
include:
- zsh
- vim
- x11
- i3
- font
- git
- gdb
work:
include:
- zsh
- vim
- x11
- i3
- font
- git
- gdb
dev-linux-bash:
include:
- bash
- vim
dev-obsd-bash:
- bash
- vim
dev-linux-zsh:
include:
- zsh
- vim
dev-obsd-zsh:
- zsh
- vim
# Packages to be used above
bash:
dotfiles:
- f_bashrc
zsh:
dotfiles:
- f_zshrc
- d_oh-my-zsh
- f_zsh_theme
vim:
dotfiles:
- f_vimrc
x11:
dotfiles:
- f_xresources
- f_xinitrc
i3:
dotfiles:
- f_i3_config
- f_i3status_config
font:
dotfiles:
- d_fonts
git:
dotfiles:
- f_gitconfig
gdb:
dotfiles:
- f_gdbinit