moving back to arch
This commit is contained in:
parent
7d870bde5e
commit
000339270e
5 changed files with 28 additions and 28 deletions
|
|
@ -1,25 +1,26 @@
|
|||
return {
|
||||
-- {
|
||||
-- 'catppuccin/nvim',
|
||||
-- name = 'catppuccin',
|
||||
-- priority = 1000,
|
||||
-- config = function()
|
||||
-- require('catppuccin').setup({
|
||||
-- transparent_background = true,
|
||||
-- })
|
||||
-- vim.cmd.colorscheme([[catppuccin-mocha]])
|
||||
-- end
|
||||
-- }
|
||||
{
|
||||
"Mofiqul/adwaita.nvim",
|
||||
lazy = false,
|
||||
'catppuccin/nvim',
|
||||
name = 'catppuccin',
|
||||
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')
|
||||
require('catppuccin').setup({
|
||||
transparent_background = true,
|
||||
})
|
||||
vim.cmd.colorscheme([[catppuccin-mocha]])
|
||||
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
|
||||
-- }
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
#!/bin/sh
|
||||
|
||||
prefix=$HOME/Nextcloud/Books/
|
||||
dmenu=pipemenu
|
||||
pdf="flatpak run org.gnome.Papers"
|
||||
dmenu="fuzzel -d -w 60"
|
||||
pdf=zathura
|
||||
|
||||
choice=$(find $prefix -type f | sed "s|$prefix||;s/_/ /g" | $dmenu)
|
||||
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
#!/bin/sh
|
||||
|
||||
prefix=$HOME/Nextcloud/Papers/
|
||||
dmenu=pipemenu
|
||||
pdf="flatpak run org.gnome.Papers"
|
||||
dmenu="fuzzel -d -w 60"
|
||||
pdf=zathura
|
||||
|
||||
choice=$(find $prefix -type f | sed "s|$prefix||;s/_/ /g" | $dmenu)
|
||||
|
||||
|
|
|
|||
|
|
@ -41,8 +41,8 @@ zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
|
|||
zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}'
|
||||
|
||||
# plugins
|
||||
source /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
||||
source /usr/share/zsh-autosuggestions/zsh-autosuggestions.zsh
|
||||
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
||||
source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
|
||||
|
||||
# zoxide
|
||||
eval "$(zoxide init zsh)"
|
||||
|
|
|
|||
|
|
@ -1,3 +1,2 @@
|
|||
export XDG_CONFIG_HOME="$HOME/.config"
|
||||
export ZDOTDIR="$XDG_CONFIG_HOME/zsh"
|
||||
. "/home/wball/.local/share/cargo/env"
|
||||
|
|
|
|||
Loading…
Reference in a new issue