55 lines
543 B
Markdown
55 lines
543 B
Markdown
# Arch Linux WSL Dotfiles
|
|
|
|
## Requirement
|
|
|
|
* fd
|
|
* tree
|
|
* bat
|
|
* highlight
|
|
|
|
## Installtion
|
|
|
|
### vim
|
|
|
|
```sh
|
|
ln -sf dotfiles/.vimrc ~/.vimrc
|
|
```
|
|
|
|
### nvim
|
|
|
|
```sh
|
|
ln -sf dotfiles/nvim ~/.config/nvim
|
|
```
|
|
|
|
#### install lsp server
|
|
|
|
install `pyright`
|
|
|
|
```sh
|
|
python -m venv venv
|
|
|
|
pip install pyright
|
|
```
|
|
|
|
install `ts_ls`
|
|
|
|
```sh
|
|
npm install -g typescript typescript-language-server
|
|
```
|
|
|
|
### zsh
|
|
|
|
```sh
|
|
touch ~/.zshrc
|
|
|
|
ln -sf dotfiles/zsh ~/.config/zsh
|
|
|
|
echo "source ~/.config/zsh" > ~/.zshrc
|
|
```
|
|
|
|
### yazi
|
|
|
|
```sh
|
|
ln -sf dotfiles/yazi ~/.config/yazi
|
|
```
|