-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.conf.yaml
91 lines (83 loc) · 3.05 KB
/
install.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
85
86
87
88
89
90
91
- defaults:
link:
create: true
relink: true
- clean: ["~"]
- create:
# - ~/Downloads
# - ~/scratch
# - ~/projects
# - ~/mounted
- ~/.vim/undo-history
- ~/.wastebasket
- ~/.config/karabiner
- git:
"~/.fzf":
url: "https://github.com/junegunn/fzf.git"
description: "fzf for both zsh and bash"
- shell:
# - if [ -e ~/.vim/autoload/plug.vim ]; then rm ~/.vim/autoload/plug.vim; fi;
- [git submodule update --init --recursive, Installing submodules]
# the following have to run after linking ~/.gitconfig
- [ test "$(uname)" = "Linux" && sudo apt-get install -y zsh tmux vim htop ranger || true,
Installing zsh tmux vim, and htop on Linux,
]
- [ test "$(uname)" = "Darwin" && brew install lazygit zellij || true,
Installing lazygit and zellij on MacOS
]
- [
test ! -d ~/.oh-my-zsh && sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" || true,
Installing oh-my-zsh,
]
# - [chsh -s $(which zsh), Making zsh the default shell]
# - ./scripts/coc.sh
- git:
"~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting":
url: "https://github.com/zsh-users/zsh-syntax-highlighting.git"
description: "zsh plugin: zsh-syntax-highlighting"
"~/.oh-my-zsh/custom/plugins/zsh-autosuggestions":
url: "https://github.com/zsh-users/zsh-autosuggestions"
description: "zsh plugin: zsh-autosuggestions"
"~/.oh-my-zsh/custom/plugins/zsh-wakatime":
url: "https://github.com/wbinglee/zsh-wakatime.git"
description: "zsh plugin: zsh-wakatime"
"~/.oh-my-zsh/custom/plugins/autojump":
url: "https://github.com/wting/autojump.git"
description: "zsh plugin: autojump"
"~/.oh-my-zsh/custom/plugins/zsh-vi-mode":
url: "https://github.com/jeffreytse/zsh-vi-mode.git"
description: "zsh plugin: zsh-vi-mode"
- shell:
- [
cd ~/.oh-my-zsh/custom/plugins/autojump && ./install.py,
Installing autojump,
]
- link:
~/.gitconfig: git/gitconfig
~/.tmux.conf: tmux.conf
~/.gdb: gdb
~/.gdbinit: gdb/gdbinit
~/.zshrc: oh-my-zsh/zshrc
~/.common_shell_setup.sh: common_shell_setup.sh
~/.bashrc: bash/bashrc
~/.yabairc: yabairc
~/.skhdrc: skhdrc
~/.skhd: skhd
~/.condarc: condarc
~/.mambarc: mambarc
~/.config/ranger: ranger
~/.npmrc: npmrc
~/.vimrc: vim/vimrc/vimrc
~/.vim_runtime: vim/vimrc
~/.ideavimrc: ideavimrc
~/.Rprofile: Rprofile
~/.config/pip/pip.conf: pip.conf
~/.config/nvim: neovim/nvim-basic-ide
~/.cargo/config.toml: cargo/config.toml
~/.vscoderc: vscode/vscoderc
# ~/.config/nvim: neovim/NvChad
~/.chatgpt: chatgpt
~/.config/karabiner/karabiner.json: karabiner/karabiner.json
~/.config/karabiner/assets: karabiner/assets
- shell:
- [~/.fzf/install --all, Installing fzf]