Compare commits
8 Commits
cc3c30bc10
...
9dcb4be837
Author | SHA1 | Date | |
---|---|---|---|
9dcb4be837 | |||
1981a25081 | |||
b89c75020e | |||
547a46837f | |||
31d1419b4d | |||
ce8c8126ce | |||
ed796356c4 | |||
6c088de975 |
3
programs
3
programs
@ -77,7 +77,7 @@ rsync
|
||||
unzip
|
||||
wget
|
||||
playerctl
|
||||
helvum
|
||||
qpwgraph
|
||||
jq
|
||||
fzf
|
||||
yt-dlp
|
||||
@ -128,6 +128,7 @@ typescript
|
||||
typescript-language-server
|
||||
bash-language-server
|
||||
vscode-css-languageserver
|
||||
rust-analyzer
|
||||
arc-gtk-theme
|
||||
lxappearance-gtk3
|
||||
radare2
|
||||
|
@ -1,5 +1,4 @@
|
||||
animdl
|
||||
td-watson
|
||||
cppman
|
||||
git+https://github.com/idanpa/calcpy
|
||||
git+https://github.com/dogeystamp/testr
|
||||
|
@ -3,8 +3,8 @@ function thur; zathura $argv; end
|
||||
# stricter sandbox zathura
|
||||
function zathsec; /usr/bin/zathura -c ~/.config/zathura-sec $argv; end
|
||||
|
||||
# tmux with 256-color
|
||||
function tmx; tmux -2 $argv; end
|
||||
# tmux with 256-color and UTF-8
|
||||
function tmx; tmux -u -2 $argv; end
|
||||
|
||||
# Run mpv from clipboard
|
||||
function mpvy; mpv (xsel -b); end
|
||||
@ -30,7 +30,7 @@ function genlop; doas -u portage /usr/bin/genlop; end
|
||||
function loginctl; doas /bin/loginctl; end
|
||||
|
||||
# bootleg meme feed
|
||||
function arf; mpv --shuffle --no-resume-playback med/memes/arf; end
|
||||
function arf; mpv --shuffle --no-resume-playback ~/med/memes/arf; end
|
||||
|
||||
# aliases for logs and notes
|
||||
function xx; $EDITOR ~/dox/not/xx.tsv; end
|
||||
@ -62,6 +62,8 @@ end
|
||||
#
|
||||
# listenbrainz
|
||||
function lstb; qbprof lstb; end
|
||||
# paperless
|
||||
function papr; qbprof papr; end
|
||||
function work; qbprof work; end
|
||||
function chat; qbprof chat; end
|
||||
function zoom; qbprof zoom; end
|
||||
|
@ -3,3 +3,7 @@
|
||||
name = dogeystamp
|
||||
[gpg]
|
||||
program = passphrase2pgp
|
||||
[merge]
|
||||
tool = nvimmerge
|
||||
[mergetool "nvimmerge"]
|
||||
cmd = "nvim -d -c \"wincmd l\" -c \"norm ]c\" \"$LOCAL\" \"$MERGED\" \"$REMOTE\""
|
||||
|
@ -54,6 +54,7 @@ local servers = {
|
||||
tsserver = {},
|
||||
bashls = {},
|
||||
cssls = {},
|
||||
rust_analyzer = {},
|
||||
}
|
||||
|
||||
local nvim_lsp = require('lspconfig')
|
||||
|
22
src/.config/qbprof/papr/config/config.py
Normal file
22
src/.config/qbprof/papr/config/config.py
Normal file
@ -0,0 +1,22 @@
|
||||
config.load_autoconfig(False)
|
||||
|
||||
c.input.mode_override = "passthrough"
|
||||
c.statusbar.show = "never"
|
||||
c.tabs.show = "multiple"
|
||||
c.bindings.default["passthrough"] = {}
|
||||
c.bindings.commands["passthrough"] = {
|
||||
"<ctrl-escape>": "mode-leave"
|
||||
}
|
||||
|
||||
c.url.start_pages = "https://doc.dogeystamp.com"
|
||||
|
||||
c.downloads.location.directory = "~/quar/"
|
||||
c.downloads.remove_finished = 1000
|
||||
c.scrolling.smooth = True
|
||||
|
||||
c.colors.webpage.darkmode.enabled = True
|
||||
|
||||
# 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"]
|
@ -21,7 +21,6 @@ c.colors.tabs.selected.odd.bg = c.colors.tabs.selected.even.bg
|
||||
c.colors.webpage.darkmode.algorithm = "lightness-hsl"
|
||||
c.colors.webpage.darkmode.contrast = 0.5
|
||||
c.colors.webpage.darkmode.policy.images = "smart"
|
||||
c.colors.webpage.darkmode.grayscale.images = 0.5
|
||||
|
||||
c.colors.prompts.bg = "black"
|
||||
c.colors.prompts.border = "1px solid white"
|
||||
|
@ -10,7 +10,7 @@
|
||||
REDDIT="old.reddit.com"
|
||||
TWITTER="nitter.net"
|
||||
# genius lyrics
|
||||
GENIUS="sing.whatever.social"
|
||||
GENIUS="dm.vern.cc"
|
||||
# fandom the wiki
|
||||
FANDOM="breezewiki.com"
|
||||
YOUTUBE="yewtu.be"
|
||||
|
Loading…
Reference in New Issue
Block a user