Fix install.sh

This commit is contained in:
Sam A. 2023-05-11 20:03:49 +02:00
parent 1400fc6aa3
commit f3338f96bc
Signed by: samsapti
GPG Key ID: CBBBE7371E81C4EA
2 changed files with 32 additions and 29 deletions

View File

@ -27,37 +27,26 @@ for pkg in "$@"; do
echo " -> Stowing $pkg"
# Symlink only the individual files instead of the entire directory
[ "$pkg" = "nvim" ] && NVIM=1 && mkdir -p "$HOME/.config/$pkg"
[ "$pkg" = "nvim" ] && NVIM=1 && mkdir -p "$HOME/.config/$pkg"
[ "$pkg" = "scripts" ] && DASH=1 && mkdir -p "$HOME/.local/bin"
[ "$pkg" = "zsh" ] && ZSH=1 && mkdir -p "$HOME/.config/$pkg"
[ "$pkg" = "zsh" ] && ZSH=1 && mkdir -p "$HOME/.config/$pkg"
LC_ALL="C" stow -t "$HOME" --ignore="README.md" "$pkg"
done
if [ -n "$ZSH" ]; then
if ! grep -q "$(id -nu).*/zsh$" /etc/passwd; then
command -v zsh >/dev/null 2>&1 || sleep 0.5 &&
echo "=> Installing Zsh" && $INSTALL zsh
sleep 0.5
chsh -s /bin/zsh
fi
if [ -n "$NVIM" ] && [ ! -d "${XDG_DATA_HOME:-$HOME/.local/share}/nvim/site/pack/packer/start/packer.nvim" ]; then
command -v nvim >/dev/null 2>&1 ||
{ sleep 0.5;
echo "=> Installing Neovim";
$INSTALL nvim; }
sleep 0.5
echo "=> Initializing Zsh"
echo " :: Please run the following command from Zsh:"
echo " $ fast-theme ~/.config/zsh/fast-theme.ini"
fi
if [ -n "$NVIM" ] && [ ! -f "${XDG_DATA_HOME:-$HOME/.local/share}/nvim/site/autoload/plug.vim" ]; then
command -v nvim >/dev/null 2>&1 || sleep 0.5 &&
echo "=> Installing Neovim" && $INSTALL nvim
sleep 0.5
echo "=> Installing vim-plug and plugins for Neovim"
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"
nvim --headless +PlugInstall +qa
echo "=> Installing packer for Neovim"
git clone --quiet --depth 1 "https://github.com/wbthomason/packer.nvim" \
"${XDG_DATA_HOME:-$HOME/.local/share}/nvim/site/pack/packer/start/packer.nvim"
echo " :: The LSP servers will be installed automatically when you open a file in Neovim."
echo " :: Please run the following Normal mode command in Neovim to install the plugins:"
echo " :PackerSync"
fi
if [ -n "$DASH" ] && ! command -v dash >/dev/null 2>&1; then
@ -66,6 +55,22 @@ if [ -n "$DASH" ] && ! command -v dash >/dev/null 2>&1; then
$INSTALL dash
fi
if [ -n "$ZSH" ]; then
if ! grep -q "$(id -nu).*/zsh$" /etc/passwd; then
command -v zsh >/dev/null 2>&1 ||
{ sleep 0.5;
echo "=> Installing Zsh";
$INSTALL zsh; }
sleep 0.5
chsh -s /bin/zsh
fi
sleep 0.5
echo "=> Initializing Zsh"
echo " :: Please run the following command from Zsh:"
echo " $ fast-theme ~/.config/zsh/fast-theme.ini"
fi
sleep 0.5
echo "=> Done!"

View File

@ -14,10 +14,7 @@ require('packer').startup(function(use)
use {
'williamboman/mason-lspconfig.nvim',
requires = {
{
'williamboman/mason.nvim',
run = ':MasonUpdate'
},
'williamboman/mason.nvim',
'neovim/nvim-lspconfig'
}
}
@ -149,6 +146,7 @@ cmp.setup.cmdline(':', {
-- lsp config
require('mason').setup {}
require("mason-registry").refresh()
require('mason-lspconfig').setup {
automatic_installation = true
}