Compare commits
No commits in common. "30bd97a06d4a761349a348cc1837c29ffa043619" and "7d870bde5ed67699f907b848c3a6927cac774657" have entirely different histories.
30bd97a06d
...
7d870bde5e
8 changed files with 38 additions and 56 deletions
|
|
@ -34,15 +34,12 @@
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(defvar bootstrap-version)
|
(defvar bootstrap-version)
|
||||||
(let ((bootstrap-file
|
(let ((bootstrap-file
|
||||||
(expand-file-name
|
(expand-file-name "straight/repos/straight.el/bootstrap.el" user-emacs-directory))
|
||||||
"straight/repos/straight.el/bootstrap.el"
|
(bootstrap-version 5))
|
||||||
(or (bound-and-true-p straight-base-dir)
|
|
||||||
user-emacs-directory)))
|
|
||||||
(bootstrap-version 7))
|
|
||||||
(unless (file-exists-p bootstrap-file)
|
(unless (file-exists-p bootstrap-file)
|
||||||
(with-current-buffer
|
(with-current-buffer
|
||||||
(url-retrieve-synchronously
|
(url-retrieve-synchronously
|
||||||
"https://raw.githubusercontent.com/radian-software/straight.el/develop/install.el"
|
"https://raw.githubusercontent.com/raxod502/straight.el/develop/install.el"
|
||||||
'silent 'inhibit-cookies)
|
'silent 'inhibit-cookies)
|
||||||
(goto-char (point-max))
|
(goto-char (point-max))
|
||||||
(eval-print-last-sexp)))
|
(eval-print-last-sexp)))
|
||||||
|
|
@ -142,9 +139,9 @@
|
||||||
** Theme
|
** Theme
|
||||||
*** Catppuccin
|
*** Catppuccin
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package catppuccin-theme
|
(use-package catppuccin-theme
|
||||||
:config
|
:config)
|
||||||
(load-theme 'catppuccin :no-confirm))
|
; (load-theme 'catppuccin :no-confirm))
|
||||||
#+end_src
|
#+end_src
|
||||||
*** Modus Themes
|
*** Modus Themes
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
|
@ -157,7 +154,8 @@
|
||||||
modus-themes-prompts '(bold intense)
|
modus-themes-prompts '(bold intense)
|
||||||
modus-themes-mode-line '(borderless accented moody)
|
modus-themes-mode-line '(borderless accented moody)
|
||||||
modus-themes-org-blocks 'gray-background
|
modus-themes-org-blocks 'gray-background
|
||||||
modus-themes-region '(bg-only no-extend)))
|
modus-themes-region '(bg-only no-extend))
|
||||||
|
(load-theme 'modus-operandi :no-confirm))
|
||||||
#+end_src
|
#+end_src
|
||||||
* Completion
|
* Completion
|
||||||
** Vertico
|
** Vertico
|
||||||
|
|
@ -284,8 +282,8 @@
|
||||||
* Languages
|
* Languages
|
||||||
** Agda
|
** Agda
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
; (load-file (let ((coding-system-for-read 'utf-8))
|
(load-file (let ((coding-system-for-read 'utf-8))
|
||||||
; (shell-command-to-string "agda-mode locate")))
|
(shell-command-to-string "agda-mode locate")))
|
||||||
#+end_src
|
#+end_src
|
||||||
** PG
|
** PG
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
file:///home/wball/Nextcloud
|
|
||||||
|
|
@ -1,26 +1,25 @@
|
||||||
return {
|
return {
|
||||||
|
-- {
|
||||||
|
-- 'catppuccin/nvim',
|
||||||
|
-- name = 'catppuccin',
|
||||||
|
-- priority = 1000,
|
||||||
|
-- config = function()
|
||||||
|
-- require('catppuccin').setup({
|
||||||
|
-- transparent_background = true,
|
||||||
|
-- })
|
||||||
|
-- vim.cmd.colorscheme([[catppuccin-mocha]])
|
||||||
|
-- end
|
||||||
|
-- }
|
||||||
{
|
{
|
||||||
'catppuccin/nvim',
|
"Mofiqul/adwaita.nvim",
|
||||||
name = 'catppuccin',
|
lazy = false,
|
||||||
priority = 1000,
|
priority = 1000,
|
||||||
|
|
||||||
|
-- configure and set on startup
|
||||||
config = function()
|
config = function()
|
||||||
require('catppuccin').setup({
|
-- vim.g.adwaita_darker = true -- for darker version
|
||||||
transparent_background = true,
|
-- vim.g.adwaita_disable_cursorline = true -- to disable cursorline
|
||||||
})
|
vim.g.adwaita_transparent = true -- makes the background transparent
|
||||||
vim.cmd.colorscheme([[catppuccin-mocha]])
|
vim.cmd('colorscheme adwaita')
|
||||||
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,8 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
prefix=$HOME/Nextcloud/Books/
|
prefix=$HOME/Nextcloud/Books/
|
||||||
dmenu="fuzzel -d -w 60"
|
dmenu=pipemenu
|
||||||
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,8 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
prefix=$HOME/Nextcloud/Papers/
|
prefix=$HOME/Nextcloud/Papers/
|
||||||
dmenu="fuzzel -d -w 60"
|
dmenu=pipemenu
|
||||||
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,15 +0,0 @@
|
||||||
Host gh
|
|
||||||
User git
|
|
||||||
Hostname github.com
|
|
||||||
IdentityFile ~/.ssh/id_rsa-github
|
|
||||||
|
|
||||||
Host fg
|
|
||||||
User git
|
|
||||||
Hostname forgejo.ballcloud.cc
|
|
||||||
IdentityFile ~/.ssh/id_ed25519
|
|
||||||
Port 222
|
|
||||||
|
|
||||||
Host server
|
|
||||||
User wball
|
|
||||||
Hostname ballcloud.cc
|
|
||||||
IdentityFile ~/.ssh/id_ed25519
|
|
||||||
|
|
@ -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)"
|
||||||
|
|
@ -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
|
||||||
|
|
@ -1,2 +1,3 @@
|
||||||
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"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue