Compare commits

..

No commits in common. "8e4a4961cc126779a5570518e4b819d0520c2cfe" and "7230f5d30f8e4efbc3f5645ff02e5f7ae20bb33c" have entirely different histories.

8 changed files with 10 additions and 93 deletions

View File

@ -2,8 +2,6 @@
# essentials
#
ttf-jetbrains-mono
ttf-roboto
noto-fonts-emoji
git
xwallpaper
dunst
@ -15,10 +13,8 @@ xorg-setxkbmap
xorg-xrandr
xorg-xset
xorg-xsetroot
# in the aur
xkblayout-state
xss-lock
qutebrowser
neovim
@ -31,22 +27,12 @@ xsel
xclip
nsxiv
pulsemixer
# battery status
acpi
pipewire-pulse
#
# utility
#
which
termdown
rsync
unzip
wget
playerctl
helvum
jq
fzf
yt-dlp
@ -57,21 +43,7 @@ remmina
python-pynvim
xorg-xinput
neofetch
aerc
# use w3m for aerc and disallow network
dante
python-pip
httpie
# for mpvq script
socat
# for appimage opening
fuse2
w3m
#
# extras
@ -87,44 +59,20 @@ python-lsp-server
python-lsp-black
typescript
typescript-language-server
bash-language-server
vscode-css-languageserver
adwaita-color-schemes
lxappearance
# .local/bin/calcpy/ script
ipython
python-sympy
chromium
cargo
npm
ansible
# for personal website compilation
lowdown
#
# for new systems
#
networkmanager
os-prober
efibootmgr
grub
xorg-server
xorg-xinit
man
# for compiling suckless utilities
make
freetype2
pkgconf
gcc
#
# personal
#
sof-firmware
xonotic
python-pipx
xf86-input-wacom

View File

@ -9,6 +9,15 @@ if set -q TMUX
end
end
if set -q SSH_AGENT_PID
functions -c fish_prompt ssha_old_fish_prompt
function fish_prompt
printf "%s%s%s" (set_color 9C8080) "(ssha) " (set_color normal)
ssha_old_fish_prompt
end
end
if set -q SSH_TTY
functions -c fish_prompt ssh_old_fish_prompt

View File

@ -66,8 +66,6 @@ local servers = {
},
clangd = {},
tsserver = {},
bashls = {},
cssls = {},
}
local nvim_lsp = require('lspconfig')

View File

@ -14,8 +14,3 @@ c.fonts.default_family = "JetBrains Mono"
c.downloads.location.directory = "~/quar/"
c.scrolling.smooth = True
c.downloads.remove_finished = 1000
# homegrown file selector
c.fileselect.handler = "external"
c.fileselect.multiple_files.command = ["st", "-e", "fish", "-C", "set -x OUTPUT {}; source ~/.local/bin/fish-fm"]
c.fileselect.single_file.command = ["st", "-e", "fish", "-C", "set -x OUTPUT {}; source ~/.local/bin/fish-fm"]

View File

@ -115,8 +115,3 @@ config.bind("ct", "hint title userscript code_select.py")
# use libre redirects
config.bind(",fl", "hint links userscript fixlink.sh")
config.bind(",fL", "hint links userscript fixlink-tab.sh")
# homegrown file selector
c.fileselect.handler = "external"
c.fileselect.multiple_files.command = ["st", "-e", "fish", "-C", "set -x OUTPUT {}; source ~/.local/bin/fish-fm"]
c.fileselect.single_file.command = ["st", "-e", "fish", "-C", "set -x OUTPUT {}; source ~/.local/bin/fish-fm"]

View File

@ -1,26 +0,0 @@
#!/bin/fish
# simple wrapper to let you select files in the terminal
# call it like this:
#
# fish -P -C "set -x OUTPUT [output file]; source fish-fm"
#
# if specified, $OUTPUT will contain the selected paths
# otherwise paths are printed to stdout
# in the shell, write the following to select files:
#
# sel file1 file2 file3
#
if test -z "$OUTPUT"
set OUTPUT /dev/stdout
end
# clear output
printf "" > "$OUTPUT"
function sel
for arg in $argv
realpath "$arg" >> "$OUTPUT"
end
exit
end

View File

@ -7,7 +7,7 @@
# config.bind(",fL", "hint links userscript fixlink.sh -t")
#
REDDIT="reddit.baby"
REDDIT="lr.mint.lgbt"
TWITTER="nitter.net"
# genius lyrics
GENIUS="sing.whatever.social"

View File

@ -80,6 +80,4 @@ export PATH="$PATH":"$XDG_DATA_HOME"/go/bin
# cppman can't set it itself for some reason
export MANPATH="$MANPATH":~/.cache/cppman/
eval $(ssh-agent)
. .config/bashrc