mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-11-24 16:28:22 -05:00
11 lines
514 B
Bash
Executable File
11 lines
514 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ ! -d "$HOME/.local/share/lite-xl" ]; then
|
|
mkdir -pv ~/.local/share/lite-xl
|
|
git clone https://github.com/franko/console ~/.local/share/lite-xl/console
|
|
git clone https://github.com/liquidev/lintplus ~/.local/share/lite-xl/lintplus
|
|
git clone https://github.com/drmargarido/linters ~/.local/share/lite-xl/linters
|
|
git clone https://github.com/franko/lite-plugins ~/.local/share/lite-xl/lite-plugins
|
|
# git clone https://github.com/a327ex/lite-plugins ~/.local/share/lite-xl/lite-plugins-2
|
|
fi
|