added lua lsb in micro
parent
d8dc72d0d4
commit
de7215ef89
|
|
@ -1,7 +1,7 @@
|
||||||
|
#!/bin/bash
|
||||||
#install components
|
#install components
|
||||||
echo "Installing required Packages"
|
echo "Installing required Packages"
|
||||||
sudo pacman -S alsa-utils base base-devel bash-language-server btop btrfs-progs clang curl dolphin dunst fastfetch firefox flatpak gcc git gnu-netcat greetd-tuigreet grim grub gst-plugin-pipewire htop hyfetch hyprland imagemagick inetutils iwd jq kitty ldns libpulse linux linux-firmware micro nano networkmanager nmap openssh pulsemixer nerd-fonts otf-font-awesome pipewire pipewire-alsa pipewire-jack pipewire-pulse polkit-kde-agent qt5-wayland qt6-wayland slurp smartmontools swww ttf-jetbrains-mono unzip vim waybar wget wireless_tools wireplumber wireshark-qt wofi wpa_supplicant wl-clipboard qt6ct xdg-desktop-portal-hyprland xdg-utils xf86-video-amdgpu xf86-video-ati xf86-video-nouveau xf86-video-vmware xorg-server xorg-xinit yazi zip zram-generator zsh
|
sudo pacman -S alsa-utils base base-devel bash-language-server btop btrfs-progs clang curl dolphin dunst fastfetch firefox flatpak gcc git gnu-netcat greetd-tuigreet grim grub gst-plugin-pipewire htop hyfetch hyprland imagemagick inetutils iwd jq kitty ldns libpulse linux linux-firmware lua-language-server micro nano networkmanager nmap openssh pulsemixer nerd-fonts otf-font-awesome pipewire pipewire-alsa pipewire-jack pipewire-pulse polkit-kde-agent qt5-wayland qt6-wayland slurp smartmontools swww ttf-jetbrains-mono unzip vim waybar wget wireless_tools wireplumber wireshark-qt wofi wpa_supplicant wl-clipboard qt6ct xdg-desktop-portal-hyprland xdg-utils xf86-video-amdgpu xf86-video-ati xf86-video-nouveau xf86-video-vmware xorg-server xorg-xinit yazi zip zram-generator zsh
|
||||||
|
|
||||||
#aur/yay setup
|
#aur/yay setup
|
||||||
echo "Installing yay"
|
echo "Installing yay"
|
||||||
|
|
@ -100,3 +100,5 @@ chsh -s /usr/bin/zsh
|
||||||
echo "Press any key to reboot"
|
echo "Press any key to reboot"
|
||||||
read
|
read
|
||||||
systemctl reboot
|
systemctl reboot
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -27,6 +27,10 @@ local defaultLanguageServerOptions = {
|
||||||
-- define your own servers to be used in settings at the bottom of this file.
|
-- define your own servers to be used in settings at the bottom of this file.
|
||||||
-- See defaultLanguageServerOptions above for the available options.
|
-- See defaultLanguageServerOptions above for the available options.
|
||||||
languageServer = {
|
languageServer = {
|
||||||
|
bashls = {
|
||||||
|
cmd = "bash-language-server",
|
||||||
|
args = {"start"}
|
||||||
|
},
|
||||||
clangd = {
|
clangd = {
|
||||||
cmd = "clangd"
|
cmd = "clangd"
|
||||||
},
|
},
|
||||||
|
|
@ -126,6 +130,7 @@ settings = {
|
||||||
|
|
||||||
-- Language server to use when `lsp` command is executed without args
|
-- Language server to use when `lsp` command is executed without args
|
||||||
defaultLanguageServer = {
|
defaultLanguageServer = {
|
||||||
|
shell = languageServer.bashls,
|
||||||
c = languageServer.clangd,
|
c = languageServer.clangd,
|
||||||
["c++"] = languageServer.clangd,
|
["c++"] = languageServer.clangd,
|
||||||
clojure = languageServer.clojurelsp,
|
clojure = languageServer.clojurelsp,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue