aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/install.conf.yaml
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2021-11-15 03:51:19 -0600
committerToby Vincent <tobyv13@gmail.com>2021-11-15 03:51:19 -0600
commit00a699c41b24e6149fdf7d12ad15cb1a77024bb1 (patch)
tree1988f8b2fac44587f43ebfd1a05c06dae2f61380 /install.conf.yaml
parentf3096c5a63b1a6fb007c7a0dc522866d1fd0b320 (diff)
refactor: moved everything to symlinks
Diffstat (limited to 'install.conf.yaml')
-rw-r--r--install.conf.yaml32
1 files changed, 26 insertions, 6 deletions
diff --git a/install.conf.yaml b/install.conf.yaml
index e6cd3d0..88d75b1 100644
--- a/install.conf.yaml
+++ b/install.conf.yaml
@@ -12,8 +12,8 @@
- create:
- ~/.local/share/bash-completion/completions
- ~/.local/share/zsh/site-functions
- - ~/.bash.d
- - ~/.zsh.d
+ - ~/.bash
+ - ~/.zsh
- shell:
- description: Installing submodules
@@ -47,8 +47,8 @@
rm -rf $td && (
curl -sL https://raw.githubusercontent.com/junegunn/fzf/master/shell/completion.bash >~/.local/share/bash-completion/completions/fzf;
curl -sL https://raw.githubusercontent.com/junegunn/fzf/master/shell/completion.zsh >~/.local/share/zsh/site-functions/_fzf;
- curl -sL https://raw.githubusercontent.com/junegunn/fzf/master/shell/key-bindings.bash >~/.bash.d/fzf-key-bindings.sh;
- curl -sL https://raw.githubusercontent.com/junegunn/fzf/master/shell/key-bindings.zsh >~/.zsh.d/fzf-key-bindings.zsh;
+ curl -sL https://raw.githubusercontent.com/junegunn/fzf/master/shell/key-bindings.bash >~/.bash/fzf-key-bindings.sh;
+ curl -sL https://raw.githubusercontent.com/junegunn/fzf/master/shell/key-bindings.zsh >~/.zsh/fzf-key-bindings.zsh;
)
- description: Installing bat
@@ -106,19 +106,39 @@
- description: Installing zsh-autosuggestions
command: repo=https://github.com/zsh-users/zsh-autosuggestions &&
- target=~/.zsh.d/zsh-autosuggestions &&
+ target=~/.zsh/zsh-autosuggestions &&
rm -rf $target &&
git clone $repo $target
- description: Installing zsh-syntax-highlighting
command: repo=https://github.com/zsh-users/zsh-syntax-highlighting
- target=~/.zsh.d/zsh-syntax-highlighting &&
+ target=~/.zsh/zsh-syntax-highlighting &&
rm -rf $target &&
git clone $repo $target
- link:
+ # shell
~/.bashrc:
~/.zshrc:
+ ~/.bash:
+ glob: true
+ path: bash/*
+ ~/.zsh:
+ glob: true
+ path: zsh/*
+ ~/.zsh/env.sh: bash/env.sh
+ ~/.zsh/aliases.sh: bash/aliases.sh
+
+ # wsl
+ ~/.bash/:
+ glob: true
+ if: '[ -n "${WSL_DISTRO_NAME+1}" ]'
+ path: wsl/*
+ ~/.zsh/:
+ glob: true
+ if: '[ -n "${WSL_DISTRO_NAME+1}" ]'
+ path: wsl/*
+
~/.config/starship.toml: starship.toml
~/.config/alacritty.yml: alacritty.yml
~/.gitconfig: