Compare commits

...

4 commits

3 changed files with 16 additions and 34 deletions

View file

@ -5,7 +5,6 @@ alsa-firmware
alsa-plugins
alsa-utils
amd-ucode
amdvlk
android-tools
asp
autoconf
@ -41,9 +40,9 @@ chrpath
clapper
cmake
colordiff
coppwr-bin
cpio
cryptsetup
csound
cups
cups-pdf
d-spy
@ -65,6 +64,7 @@ dnscontrol-bin
doasedit-alternative
dosfstools
downgrade
dtc
dummy
e2fsprogs
easytag
@ -85,13 +85,10 @@ eza
f2fs-tools
fakeroot
fd
ffmpegthumbnailer
file
filezilla
findutils
firefox
firefox-tridactyl
firefox-tridactyl-native-bin
fish
flex
foot
@ -108,13 +105,11 @@ gdb-dashboard
gettext
ghcup-hs-bin
git
gleam
glib2-devel
gnu-netcat
gnuplot
go
gobject-introspection
google-chrome
gopls
gpart
gparted
@ -141,7 +136,6 @@ gzip
hadolint-bin
haveged
hdparm
helix
helvum
hexyl
htop
@ -177,7 +171,6 @@ libsndfile
libsoup
libtermkey
libtool
libva-mesa-driver
libva-utils
libvterm
libwacom
@ -203,7 +196,6 @@ make
mako
man-db
man-pages
mariadb-libs
mdadm
mediainfo
mesa
@ -221,8 +213,7 @@ moreutils
mpc
mpd
mpdas
mpdris2
mpv
mpdris2-rs
msmtp
mtools
mutt
@ -235,6 +226,7 @@ net-tools
netctl
nfs-utils
ngrok
nicotine+
nilfs-utils
nmap
noise-suppression-for-voice
@ -286,7 +278,6 @@ python-pandocfilters
python-pygments
qpdf
qt6-wayland
qt6ct
radeontop
refind
reflector
@ -310,7 +301,6 @@ shellcheck-bin
slack-desktop
slurp
smartmontools
soulseekqt
sox
spandsp
stow
@ -328,18 +318,6 @@ telegram-desktop
terminus-font
texi2html
texinfo
texlive-basic
texlive-bibtexextra
texlive-fontsextra
texlive-formatsextra
texlive-games
texlive-humanities
texlive-latexextra
texlive-mathscience
texlive-music
texlive-pictures
texlive-pstricks
texlive-publishers
thunar
tinyxxd
tlp
@ -347,6 +325,7 @@ tmux
tmuxp
tokei
traceroute
transmission-cli
transmission-gtk
trash-cli
tree-sitter-cli
@ -364,7 +343,6 @@ ttf-nerd-fonts-symbols-mono
ttf-opensans
ttf-ubuntu-font-family
typst
typst-lsp
unrar
unzip
upower
@ -373,8 +351,10 @@ usbutils
uv
v4l2loopback-dkms
valgrind
vesktop-bin
vulkan-mesa-layers
vulkan-radeon
wdisplays
wf-recorder
wget
which
whois
@ -409,4 +389,3 @@ zig
zls-nightly-bin
zola
zsa-wally-cli
zulip-desktop-bin

View file

@ -8,7 +8,7 @@ abbr cdel 'cabal-clean --delete'
abbr crem 'cabal-clean --remove'
abbr cexec 'cabal exec -v0 -- ghc --print-libdir'
abbr cdoc 'cabal haddock --enable-documentation'
abbr cinstall 'cabal install --installdir=$HOME/.local/bin --overwrite-policy=always --install-method=copy'
abbr cinstall 'cabal install --jobs=(math --scale=0 (nproc) / 2) --installdir=$HOME/.local/bin --overwrite-policy=always --install-method=copy'
abbr crun 'cabal run'
abbr crepl 'cabal repl --build-depends pretty-simple'
abbr ctest 'cabal test --enable-tests --test-show-details=direct'
@ -38,3 +38,4 @@ abbr cpdp 'cabal-plan dot-png'
abbr cpt 'cabal-plan topo'
abbr cplr 'cabal-plan license-reportate'
abbr chi 'hiedb -D .hiedb index .hiefiles --src-base-dir .'
abbr chic 'find . -name .hiefiles | awk \'{print $1" "substr($1, 1, length($1) - length(".hiefiles"))}\' | xargs -n2 sh -c \'hiedb -D .hiedb index $0 --src-base-dir=$1 --skip-types\''

View file

@ -1,4 +1,6 @@
local lsp_utils = require('lsp-utils')
local bashls_config = lsp_utils.bashls_config()
vim.lsp.start(bashls_config)
vim.api.nvim_create_autocmd({ "BufWritePost" }, {
buffer = 0,
callback = function()
require("lint").try_lint()
end,
})