From f413ccfe975397b478a89609bd464e8ea42fee3a Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Sat, 11 Feb 2017 13:31:29 +0100 Subject: [PATCH] Add dotbot configuration files --- meta/configs/git.yaml | 4 ++++ meta/configs/gnupg.yaml | 8 ++++++++ meta/configs/profile.yaml | 3 +++ meta/configs/qt.yaml | 3 +++ meta/configs/rofi.yaml | 3 +++ meta/configs/teiler.yaml | 8 ++++++++ meta/configs/terminal-colors.yaml | 3 +++ meta/configs/termite.yaml | 3 +++ meta/configs/vim.yaml | 7 +++++++ meta/configs/x11.yaml | 3 +++ meta/configs/youtube-dl.yaml | 6 ++++++ meta/configs/zsh.yaml | 4 ++++ 12 files changed, 55 insertions(+) create mode 100644 meta/configs/git.yaml create mode 100644 meta/configs/gnupg.yaml create mode 100644 meta/configs/profile.yaml create mode 100644 meta/configs/qt.yaml create mode 100644 meta/configs/rofi.yaml create mode 100644 meta/configs/teiler.yaml create mode 100644 meta/configs/terminal-colors.yaml create mode 100644 meta/configs/termite.yaml create mode 100644 meta/configs/vim.yaml create mode 100644 meta/configs/x11.yaml create mode 100644 meta/configs/youtube-dl.yaml create mode 100644 meta/configs/zsh.yaml diff --git a/meta/configs/git.yaml b/meta/configs/git.yaml new file mode 100644 index 0000000..8bd6a7b --- /dev/null +++ b/meta/configs/git.yaml @@ -0,0 +1,4 @@ +- link: + ~/.gitconfig: tools/vcs/git/gitconfig + ~/.gitattributes: tools/vcs/git/gitattributes +# vim: set filetype=yaml ts=4 sw=4 tw=0 et : diff --git a/meta/configs/gnupg.yaml b/meta/configs/gnupg.yaml new file mode 100644 index 0000000..1e8b8de --- /dev/null +++ b/meta/configs/gnupg.yaml @@ -0,0 +1,8 @@ +- shell: + - [mkdir -p ~/.gnupg, Create gnupg config directory] + +- link: + ~/.gnupg/gpg.conf: tools/crypto/gpg/gpg.conf + ~/.gnupg/gpg-agent.conf: tools/crypto/gpg/gpg-agent.conf + ~/.gnupg/dirmngr.conf: tools/crypto/gpg/dirmngr.conf +# vim: set filetype=yaml ts=4 sw=4 tw=0 et : diff --git a/meta/configs/profile.yaml b/meta/configs/profile.yaml new file mode 100644 index 0000000..79d041c --- /dev/null +++ b/meta/configs/profile.yaml @@ -0,0 +1,3 @@ +- link: + ~/.profile: shells/profile +# vim: set filetype=yaml ts=4 sw=4 tw=0 et : diff --git a/meta/configs/qt.yaml b/meta/configs/qt.yaml new file mode 100644 index 0000000..6339eaa --- /dev/null +++ b/meta/configs/qt.yaml @@ -0,0 +1,3 @@ +- link: + ~/.config/Trolltech.conf: gui/qt/Trolltech.conf +# vim: set filetype=yaml ts=4 sw=4 tw=0 et : diff --git a/meta/configs/rofi.yaml b/meta/configs/rofi.yaml new file mode 100644 index 0000000..6e55690 --- /dev/null +++ b/meta/configs/rofi.yaml @@ -0,0 +1,3 @@ +- link: + ~/.config/rofi: tools/misc/rofi +# vim: set filetype=yaml ts=4 sw=4 tw=0 et : diff --git a/meta/configs/teiler.yaml b/meta/configs/teiler.yaml new file mode 100644 index 0000000..3887d05 --- /dev/null +++ b/meta/configs/teiler.yaml @@ -0,0 +1,8 @@ +- shell: + - [mkdir -p ~/Bilder/Screenshots, Creating screenshots directory] + - [mkdir -p ~/Videos/Screencasts, Creating screencasts directory] + - [mkdir -p ~/Dokumente/Pastes, Creating pastes directory] + +- link: + ~/.config/teiler: tools/misc/teiler +# vim: set filetype=yaml ts=4 sw=4 tw=0 et : diff --git a/meta/configs/terminal-colors.yaml b/meta/configs/terminal-colors.yaml new file mode 100644 index 0000000..63103bc --- /dev/null +++ b/meta/configs/terminal-colors.yaml @@ -0,0 +1,3 @@ +- link: + ~/.config/base16-shell: terminals/colors/base16-shell +# vim: set filetype=yaml ts=4 sw=4 tw=0 et : diff --git a/meta/configs/termite.yaml b/meta/configs/termite.yaml new file mode 100644 index 0000000..8502b51 --- /dev/null +++ b/meta/configs/termite.yaml @@ -0,0 +1,3 @@ +- link: + ~/.config/termite: terminals/termite +# vim: set filetype=yaml ts=4 sw=4 tw=0 et : diff --git a/meta/configs/vim.yaml b/meta/configs/vim.yaml new file mode 100644 index 0000000..1891149 --- /dev/null +++ b/meta/configs/vim.yaml @@ -0,0 +1,7 @@ +- link: + ~/.vim: editors/vim + ~/.vimrc: editors/vim/vimrc + +- shell: + - [vim -c 'PluginInstall' +qall, Installing vim plugins] +# vim: set filetype=yaml ts=4 sw=4 tw=0 et : diff --git a/meta/configs/x11.yaml b/meta/configs/x11.yaml new file mode 100644 index 0000000..ad5c801 --- /dev/null +++ b/meta/configs/x11.yaml @@ -0,0 +1,3 @@ +- link: + ~/.xinitrc: gui/x11/xinitrc +# vim: set filetype=yaml ts=4 sw=4 tw=0 et : diff --git a/meta/configs/youtube-dl.yaml b/meta/configs/youtube-dl.yaml new file mode 100644 index 0000000..c84fddc --- /dev/null +++ b/meta/configs/youtube-dl.yaml @@ -0,0 +1,6 @@ +- shell + - [mkdir -p ~/Downloads/Temp, Creating download directory] + +- link: + ~/.config/youtube-dl: tools/misc/youtube-dl +# vim: set filetype=yaml ts=4 sw=4 tw=0 et : diff --git a/meta/configs/zsh.yaml b/meta/configs/zsh.yaml new file mode 100644 index 0000000..8633b68 --- /dev/null +++ b/meta/configs/zsh.yaml @@ -0,0 +1,4 @@ +- link: + ~/.zshrc: shells/zsh/zshrc + ~/.antigen.zsh: shells/zsh/antigen.zsh +# vim: set filetype=yaml ts=4 sw=4 tw=0 et :