moving back to arch

This commit is contained in:
William Ball 2025-05-12 00:02:45 -07:00
parent 7d870bde5e
commit 000339270e
Signed by: wball
GPG key ID: B8682D8137B70765
5 changed files with 28 additions and 28 deletions

View file

@ -1,25 +1,26 @@
return { return {
-- {
-- 'catppuccin/nvim',
-- name = 'catppuccin',
-- priority = 1000,
-- config = function()
-- require('catppuccin').setup({
-- transparent_background = true,
-- })
-- vim.cmd.colorscheme([[catppuccin-mocha]])
-- end
-- }
{ {
"Mofiqul/adwaita.nvim", 'catppuccin/nvim',
lazy = false, name = 'catppuccin',
priority = 1000, priority = 1000,
-- configure and set on startup
config = function() config = function()
-- vim.g.adwaita_darker = true -- for darker version require('catppuccin').setup({
-- vim.g.adwaita_disable_cursorline = true -- to disable cursorline transparent_background = true,
vim.g.adwaita_transparent = true -- makes the background transparent })
vim.cmd('colorscheme adwaita') vim.cmd.colorscheme([[catppuccin-mocha]])
end end
}} }
-- {
-- "Mofiqul/adwaita.nvim",
-- lazy = false,
-- priority = 1000,
--
-- -- configure and set on startup
-- config = function()
-- -- vim.g.adwaita_darker = true -- for darker version
-- -- vim.g.adwaita_disable_cursorline = true -- to disable cursorline
-- vim.g.adwaita_transparent = true -- makes the background transparent
-- vim.cmd('colorscheme adwaita')
-- end
-- }
}

View file

@ -1,8 +1,8 @@
#!/bin/sh #!/bin/sh
prefix=$HOME/Nextcloud/Books/ prefix=$HOME/Nextcloud/Books/
dmenu=pipemenu dmenu="fuzzel -d -w 60"
pdf="flatpak run org.gnome.Papers" pdf=zathura
choice=$(find $prefix -type f | sed "s|$prefix||;s/_/ /g" | $dmenu) choice=$(find $prefix -type f | sed "s|$prefix||;s/_/ /g" | $dmenu)

View file

@ -1,8 +1,8 @@
#!/bin/sh #!/bin/sh
prefix=$HOME/Nextcloud/Papers/ prefix=$HOME/Nextcloud/Papers/
dmenu=pipemenu dmenu="fuzzel -d -w 60"
pdf="flatpak run org.gnome.Papers" pdf=zathura
choice=$(find $prefix -type f | sed "s|$prefix||;s/_/ /g" | $dmenu) choice=$(find $prefix -type f | sed "s|$prefix||;s/_/ /g" | $dmenu)

View file

@ -41,8 +41,8 @@ zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}'
# plugins # plugins
source /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
source /usr/share/zsh-autosuggestions/zsh-autosuggestions.zsh source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
# zoxide # zoxide
eval "$(zoxide init zsh)" eval "$(zoxide init zsh)"
@ -50,4 +50,4 @@ eval "$(zoxide init zsh)"
# prompt # prompt
eval "$(starship init zsh)" eval "$(starship init zsh)"
[ -f "/home/wball/.local/share/ghcup/env" ] && . "/home/wball/.local/share/ghcup/env" # ghcup-env [ -f "/home/wball/.local/share/ghcup/env" ] && . "/home/wball/.local/share/ghcup/env" # ghcup-env

View file

@ -1,3 +1,2 @@
export XDG_CONFIG_HOME="$HOME/.config" export XDG_CONFIG_HOME="$HOME/.config"
export ZDOTDIR="$XDG_CONFIG_HOME/zsh" export ZDOTDIR="$XDG_CONFIG_HOME/zsh"
. "/home/wball/.local/share/cargo/env"