15 lines
467 B
Markdown
15 lines
467 B
Markdown
#pgr-terminal-defaults
|
|
|
|
Run this in TMUX:
|
|
- Debian / Ubuntu
|
|
```bash
|
|
sudo apt install tmux neovim -y
|
|
sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
|
|
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
|
|
ln .tmux.conf ~/.tmux.conf
|
|
tmux source ~/.tmux.conf
|
|
ln -s nvim/ ~/.config/nvim
|
|
```
|
|
|
|
Then press prefix + I to Install the Tmux Plugins
|