summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--INSTALL/arch-install2
-rwxr-xr-xneovim/.config/nvim/confs/nvimlsp.vim7
-rwxr-xr-xscripts/.local/bin/compiler2
3 files changed, 6 insertions, 5 deletions
diff --git a/INSTALL/arch-install b/INSTALL/arch-install
index 546c597..ad43070 100644
--- a/INSTALL/arch-install
+++ b/INSTALL/arch-install
@@ -20,7 +20,7 @@ sudo cp -rf ROOT/issue/issue /etc
sudo cp -rf ROOT/hosts/hosts /etc
# Install Required Programs
-sudo pacman --needed -Syu stow opendoas pamixer zsh ncmpcpp xwallpaper newsboat vifm zathura maim ffmpeg lxappearance qt5ct qt6ct ntp redshift numlockx htop xclip imagemagick transmission-gtk neovim mpv mpd mpc sxiv zathura-pdf-mupdf zathura-ps automake curl make bc android-tools gimp kdenlive inkscape arandr shellcheck arc-gtk-theme ctags unoconv nodejs p7zip papirus-icon-theme valgrind gdb light pulsemixer pavucontrol xorg-server xorg-xinit go gtk3 gst-plugins-base-libs hplip simple-scan system-config-printer gst-plugins-good grc gst-libav clang net-tools ffmpegthumbnailer webkit2gtk torbrowser-launcher neofetch cmatrix asciiquarium npm python python-pip pass screenkey pipewire-pulse ueberzug yt-dlp python-pywal alsa-utils picom virt-manager qemu-desktop wireplumber foremost testdisk swtpm lxsession obs-studio firefox keepassxc webkit2gtk-4.1 texlive-meta unzip zeal
+sudo pacman --needed -Syu stow opendoas pamixer zsh ncmpcpp xwallpaper newsboat vifm zathura maim ffmpeg lxappearance qt5ct qt6ct ntp redshift numlockx htop xclip imagemagick transmission-gtk neovim mpv mpd mpc sxiv zathura-pdf-mupdf zathura-ps automake curl make bc android-tools gimp kdenlive inkscape arandr shellcheck arc-gtk-theme ctags unoconv nodejs p7zip papirus-icon-theme valgrind gdb light pulsemixer pavucontrol xorg-server xorg-xinit go gtk3 gst-plugins-base-libs hplip simple-scan system-config-printer gst-plugins-good grc gst-libav clang net-tools ffmpegthumbnailer webkit2gtk torbrowser-launcher neofetch cmatrix asciiquarium npm python python-pip pass screenkey pipewire-pulse ueberzug yt-dlp python-pywal alsa-utils picom virt-manager qemu-desktop wireplumber foremost testdisk swtpm lxsession obs-studio firefox keepassxc webkit2gtk-4.1 texlive-meta unzip zeal texlive-langportuguese
# Adding services to OpenRC
[ "$OS" = "artix" ] && [ -e "/bin/openrc" ] && doas pacman --needed -Syu cups-openrc avahi-openrc && doas rc-update add cupsd
diff --git a/neovim/.config/nvim/confs/nvimlsp.vim b/neovim/.config/nvim/confs/nvimlsp.vim
index 2bca05a..b0b4a29 100755
--- a/neovim/.config/nvim/confs/nvimlsp.vim
+++ b/neovim/.config/nvim/confs/nvimlsp.vim
@@ -63,11 +63,12 @@ masonlsp.setup {
ensure_installed = {
-- https://github.com/williamboman/mason-lspconfig.nvim - Server List
'clangd',
- 'gopls',
- 'tsserver',
'cssls',
+ 'gopls',
'html',
- 'pyright'
+ 'pyright',
+ 'texlab',
+ 'tsserver'
},
automatic_installation = true,
handlers = {
diff --git a/scripts/.local/bin/compiler b/scripts/.local/bin/compiler
index e524601..ab8d62c 100755
--- a/scripts/.local/bin/compiler
+++ b/scripts/.local/bin/compiler
@@ -52,6 +52,6 @@ else
node "$FILE"
;;
tex)
- pdflatex "$FILE"
+ xelatex "$FILE" && xelatex "$FILE"
esac
fi