Closed yasunori0418 closed 6 months ago
https://github.com/Coordinate-Cat/dotfiles-devday/blob/main/README.md?plain=1#L15-L16
実は、install.sh
には実行権限を付けてしまっているので、次のように実行できる。
# install.sh を実行
-zsh ./install.sh
+./install.sh
#!/bin/bash
でshebangが明記されているので、install.sh
の文法にはbash由来の物を使っている。
実行時の推奨は./install.sh
が良い。
@Coordinate-Cat
git clone
がコメントになってしまっている…。https://github.com/Coordinate-Cat/dotfiles-devday/blob/main/README.md?plain=1#L29
https://github.com/Coordinate-Cat/dotfiles-devday/blob/main/README.md?plain=1#L55
これらに共通する
/$HOME
に含まれる/
は不要だと思う。 これがシェルとして展開されると、//home/user
のようなパスになるので綺麗ではない。あと、ここのsymlinkは不要かも。 https://github.com/Coordinate-Cat/dotfiles-devday/blob/main/README.md?plain=1#L55
powerlevel10kは
install.sh
で~/.zsh/plugins/github.com/romkatv/powerlevel10k
に配置されるから、このsymlinkの説明があると混乱させてしまうかも。.zshrc
でも配置予定のパスをベースにp10kを読み込むようにもなっている。