-
Notifications
You must be signed in to change notification settings - Fork 1
/
common.conf.yaml
84 lines (76 loc) · 2.01 KB
/
common.conf.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# This config is always applied regardless of the system.
# It is applied at the start of the installation.
#
- defaults:
link:
relink: true
create: true
force: true
- shell:
- [git submodule update --init --recursive, Installing submodules]
- clean: ['~', '~/.config']
- create:
- ~/.local/share/zsh
- ~/.local/share/tig
- shell:
-
command: rm -f ~/.zprofile ~/.zshrc
stdout: true
description: Cleaning old config files from the home directory
- link:
~/bin:
~/.gitconfig:
~/.config/tig:
~/.config/tmux:
~/.config/ideavim:
~/.vimrc: vim/vimrc
~/.vimrc_background: vim/vimrc_background
~/.config/nvim: vim/nvim
~/.config/ideavim: vim/ideavim
~/.config/bat:
~/.config/shell/:
path: shell/*
glob: true
~/.profile: shell/profile
~/.bash_profile: bash/bash_profile
~/.bashrc: bash/bashrc
~/.config/zsh/:
path: zsh/*
glob: true
# We have to exlude special files...
exclude: [ zsh/zshrc, zsh/zprofile ]
# ... and map them as hidden
~/.config/zsh/.zshrc: zsh/zshrc
~/.config/zsh/.zprofile: zsh/zprofile
~/.zprofile: zsh/zprofile
~/.config/ranger/:
path: ranger/*
glob: true
exclude: [ ranger/colorschemes, ranger/plugins, ranger/reference ]
~/.config/ranger/colorschemes/:
path: ranger/colorschemes/*
glob: true
~/.config/ranger/plugins/:
path: ranger/plugins/*
glob: true
~/.config/oh-my-zsh/themes/custom.zsh-theme: zsh/theme.zsh
- shell:
-
command: chsh -s $(which zsh)
stdin: true
stdout: true
description: Setting zsh as the default shell, enter your password
quiet: true
-
command: source old/install-oh-my-zsh
stdin: true
stdout: true
description: Installing on-my-zsh
quiet: true
- link:
~/.config/oh-my-zsh/themes/custom.zsh-theme: zsh/theme.zsh
- shell:
-
command: rm ~/{.zshrc,.shell.pre-oh-my-zsh}
stdout: true
description: Cleaning old config files from the home directory