back on GNOME
This commit is contained in:
parent
7c33119a5f
commit
ce39e84b90
5 changed files with 34 additions and 26 deletions
|
|
@ -3,28 +3,28 @@ return {
|
||||||
'norcalli/nvim-colorizer.lua',
|
'norcalli/nvim-colorizer.lua',
|
||||||
config = true
|
config = true
|
||||||
},
|
},
|
||||||
{
|
|
||||||
'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
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,10 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
prefix=$HOME/Nextcloud/Books/
|
prefix=$HOME/Nextcloud/Books/
|
||||||
dmenu="bemenu -p books --center --list 20 down --width-factor 0.5 --border 2 --bdr #f6c2e7"
|
dmenu="pipemenu --title Books"
|
||||||
pdf=zathura
|
# dmenu="bemenu -p books --center --list 20 down --width-factor 0.5 --border 2 --bdr #f6c2e7"
|
||||||
|
# pdf=zathura
|
||||||
|
pdf="flatpak run org.gnome.Papers"
|
||||||
|
|
||||||
choice=$(find $prefix -type f | sed "s|$prefix||;s/_/ /g" | $dmenu)
|
choice=$(find $prefix -type f | sed "s|$prefix||;s/_/ /g" | $dmenu)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,10 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
prefix=$HOME/Nextcloud/Papers/
|
prefix=$HOME/Nextcloud/Papers/
|
||||||
dmenu="bemenu -p papers --center --list 20 down --width-factor 0.5 --border 2 --bdr #f6c2e7"
|
dmenu="pipemenu --title Papers"
|
||||||
pdf=zathura
|
# dmenu="bemenu -p papers --center --list 20 down --width-factor 0.5 --border 2 --bdr #f6c2e7"
|
||||||
|
# pdf=zathura
|
||||||
|
pdf="flatpak run org.gnome.Papers"
|
||||||
|
|
||||||
choice=$(find $prefix -type f | sed "s|$prefix||;s/_/ /g" | $dmenu)
|
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}'
|
zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}'
|
||||||
|
|
||||||
# plugins
|
# plugins
|
||||||
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
source /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
||||||
source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
|
source /usr/share/zsh-autosuggestions/zsh-autosuggestions.zsh
|
||||||
|
|
||||||
# zoxide
|
# zoxide
|
||||||
eval "$(zoxide init zsh)"
|
eval "$(zoxide init zsh)"
|
||||||
|
|
|
||||||
|
|
@ -1,2 +1,6 @@
|
||||||
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"
|
||||||
|
|
||||||
|
if [ -e /home/wball/.nix-profile/etc/profile.d/nix.sh ]; then . /home/wball/.nix-profile/etc/profile.d/nix.sh; fi # added by Nix installer
|
||||||
|
[[ ! -r '/home/wball/.local/share/opam/opam-init/init.zsh' ]] || source '/home/wball/.local/share/opam/opam-init/init.zsh' > /dev/null 2> /dev/null
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue