feat some stuff

This commit is contained in:
max_richter 2021-08-19 16:09:20 +02:00
parent c87784dc14
commit ac6be60d95
2 changed files with 27 additions and 18 deletions

View File

@ -87,10 +87,14 @@ if u.has_plugin("compe") then
end end
-- LSP Config -- LSP Config
local lsp_utils = require "lsp-utils" if u.has_plugin("lspconfig") then
require "lsp-utils"
opt.completeopt = {"menuone", "noinsert", "noselect"} opt.completeopt = {"menuone", "noinsert", "noselect"}
opt.shortmess:append({c = true}) opt.shortmess:append({c = true})
-- Autoformat -- Autoformat
require "autoformatter" require "autoformatter"
end

View File

@ -9,27 +9,32 @@ cd "$(dirname "$0")"
. ./helpers/asdf-install.sh --source-only . ./helpers/asdf-install.sh --source-only
echo "-- welcome to my setup script --" echo "-- welcome to my setup script --"
echo "-- installing prerequesits (git, curl) --"
INTERACTIVE=$(tty -s && echo "true" || echo "false") if [ "$(which git)" = "" ] && ["$(which curl)" = ""]; then
if [ $INTERACTIVE = "true" ]; then echo "-- installing prerequesits (git, curl) --"
if [ "$(prompt " - do you want to continue")" != "yes" ]; then
echo " alllrighty then, byyye" INTERACTIVE=$(tty -s && echo "true" || echo "false")
exit
if [ $INTERACTIVE = "true" ]; then
if [ "$(prompt " - do you want to continue")" != "yes" ]; then
echo " alllrighty then, byyye"
exit
fi
fi fi
echo ""
#Prerequesits
echo "-- installing prerequisites --"
install git
install curl
echo "-----------------------------------"
fi fi
echo ""
#Prerequesits
echo "-- installing prerequisites --"
install git
install curl
echo "-----------------------------------"
#Make the selection #Make the selection
echo "-- what do you want to install? --" echo "-- what do you want to install? --"