Compare commits

...

5 Commits

Author SHA1 Message Date
2bebabc358
qbprof: error out for empty argument 2024-02-29 13:07:18 -05:00
d216c5f92f
programs: add exif-tool 2024-02-29 13:06:44 -05:00
cb58cfd4dd
nvim: typst numbered block snippet 2024-02-23 17:35:38 -05:00
bae8d20757
programs: add imagemagick 2024-02-23 17:34:26 -05:00
1d4cd56ed5
embedded rust stuff 2024-01-17 21:47:15 -05:00
4 changed files with 26 additions and 3 deletions

View File

@ -48,6 +48,8 @@ pipewire-pulse
cups
sane
ghostscript
imagemagick
perl-image-exiftool
glances
wavemon
usbutils
@ -148,9 +150,9 @@ python-xlib
pdf2svg
chromium
cargo
go
npm
rustup
ansible
# for personal website compilation
@ -201,8 +203,10 @@ xonotic
python-pipx
xf86-input-wacom
# for raspberyy pi pico dev
# for raspberry pi pico dev
arm-none-eabi-binutils
arm-none-eabi-gcc
arm-none-eabi-newlib
picocom
# for raspberry pi pico rust dev
elf2uf2-rs

View File

@ -54,7 +54,15 @@ local servers = {
tsserver = {},
bashls = {},
cssls = {},
rust_analyzer = {},
rust_analyzer = {
settings = {
['rust-analyzer'] = {
check = {
allTargets = false,
},
},
},
},
}
local nvim_lsp = require('lspconfig')

View File

@ -44,6 +44,12 @@ endsnippet
snippet chbl "chemistry math block" w
#chem(block: true)[$$1$]
endsnippet
snippet numb "numbered math block" w
#numbered_eq()[
$$1$
<$2>
]
endsnippet
snippet contest "template for contest problems" bi
#import "/templates/contest.typ": template, source_code, status, lref

View File

@ -1,4 +1,9 @@
#!/bin/sh
# runs a qutebrowser profile
if [ -z "$1" ]; then
printf "No profile selected.\n" > /dev/stderr
exit 1
fi
qutebrowser --basedir ~/.config/qbprof/"$1"