-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakelinks.sh
More file actions
executable file
·72 lines (53 loc) · 2.5 KB
/
Copy pathmakelinks.sh
File metadata and controls
executable file
·72 lines (53 loc) · 2.5 KB
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
#!/bin/bash
git submodule init
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
brew install cowsay
brew install fortune
brew install tig
brew install bat
brew install neovim
brew install lazygit
brew install tmuxinator
brew install zsh-syntax-highlighting
brew install ripgrep
brew install the_silver_searcher
brew install fzf
$(brew --prefix)/opt/fzf/install
brew tap homebrew/cask-fonts
echo 'Installing nvm (node version manager)...'
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
nvm install --lts
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
git clone https://github.com/chriskempson/base16-shell.git ~/.config/base16-shell
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
pip install --user pynvim neovim
python3 -m pip install --user pynvim
curl -sSL https://get.rvm.io | bash -s stable
sudo gem install neovim trash
echo 'Creating sym links to common config files'
ln -s $HOME/dotfiles/config/.aliases
ln -s $HOME/dotfiles/config/.profile
ln -s $HOME/dotfiles/tmux/.tmux.conf $HOME/.tmux.conf
ln -s $HOME/dotfiles/config/.tmuxinator $XDG_CONFIG_HOME/.tmuxinator
ln -s $HOME/dotfiles/vim/.vimrc $HOME/.vimrc
ln -s $HOME/dotfiles/vim/.vim $HOME/.vim
ln -s $HOME/dotfiles/nvim $XDG_CONFIG_HOME/nvim
ln -s $HOME/dotfiles/vim/.vim
ln -s $HOME/dotfiles/vim/.vimrc
ln -s $HOME/dotfiles/zsh/.zshrc $HOME/.zshrc
ln -s $HOME/dotfiles/zsh/.zprofile $HOME/.zprofile
ln -s $HOME/dotfiles/zsh/.oh-my-zsh/custom $HOME/.oh-my-zsh/custom
# Per-file symlinks so fish-managed state (fish_variables) and tool-generated
# snippets (conf.d/atuin.env.fish) stay local rather than living in the repo.
mkdir -p $XDG_CONFIG_HOME/fish/functions
ln -s $HOME/dotfiles/.config/fish/config.fish $XDG_CONFIG_HOME/fish/config.fish
ln -s $HOME/dotfiles/.config/fish/functions/fish_prompt.fish $XDG_CONFIG_HOME/fish/functions/fish_prompt.fish
# fisher plugin list; config.fish bootstraps fisher and runs `fisher update`.
ln -s $HOME/dotfiles/.config/fish/fish_plugins $XDG_CONFIG_HOME/fish/fish_plugins
mkdir -p $HOME/.agents
ln -s $HOME/dotfiles/.agents/skills $HOME/.agents/skills
ln -s $HOME/.agents/skills $HOME/.claude/skills
echo 'Install Alfred at: https://www.alfredapp.com/'
echo 'Install Magnet (window management) at: https://magnet.crowdcafe.com/'
echo 'Install Source Code Pro fonts'