2024-01-23 08:01:12 -09:00
|
|
|
;;; mir-packages --- Declare and configure use-package statements
|
2022-06-19 14:13:36 -08:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
;; -----------------------------------------------------------------------------
|
|
|
|
;; This is a file in which I put declarations for packages and things.
|
|
|
|
;; -----------------------------------------------------------------------------
|
|
|
|
;;; Code:
|
|
|
|
|
2023-12-15 15:16:36 -09:00
|
|
|
;; (use-package no-littering) ;a bad start, and we need more
|
2023-12-13 19:19:52 -09:00
|
|
|
|
2023-02-23 12:50:19 -09:00
|
|
|
;; (use-package use-package-ensure-system-package)
|
2024-01-16 20:37:53 -09:00
|
|
|
;; (use-package gitstatus
|
2024-02-01 15:47:26 -09:00
|
|
|
;; :git (:host github
|
2024-01-16 20:37:53 -09:00
|
|
|
;; :repo "igorepst/gitstatus-el")
|
|
|
|
;; :after eshell
|
|
|
|
;; :init
|
|
|
|
;; (setq system-architecture (car (split-string system-configuration "-")))
|
|
|
|
;; (setq gitstatusd-exe (format "~/.cache/gitstatus/gitstatusd-linux-%s"
|
|
|
|
;; system-architecture))
|
|
|
|
;; (add-hook 'eshell-before-prompt-hook #'gitstatus-eshell-start))
|
2022-06-27 18:58:48 -08:00
|
|
|
|
2023-01-15 20:00:48 -09:00
|
|
|
;; (elpaca nil
|
|
|
|
;; (use-package exwm
|
2024-02-01 15:47:26 -09:00
|
|
|
;; :git nil
|
2023-01-15 20:00:48 -09:00
|
|
|
;; :if (package-installed-p 'exwm)
|
|
|
|
;; :init
|
|
|
|
;; (require 'exwm-config)
|
|
|
|
;; (exwm-config-example)))
|
2022-11-15 10:49:15 -09:00
|
|
|
|
2023-05-26 13:47:18 -08:00
|
|
|
;; (use-package ani-el
|
2024-02-01 15:47:26 -09:00
|
|
|
;; :git (ani-el
|
|
|
|
;; :repo "https://git.marq42.xyz/mir/ani-el"
|
2023-05-26 13:47:18 -08:00
|
|
|
;; :files ("ani-el.el" "lib")))
|
2022-07-05 20:56:48 -08:00
|
|
|
|
2023-12-13 19:20:29 -09:00
|
|
|
;; (use-package hypop
|
|
|
|
;; :if (display-graphic-p)
|
2024-02-01 15:47:26 -09:00
|
|
|
;; :git (:repo "https://git.marq42.xyz/mir/hypop.el")
|
2023-12-13 19:20:29 -09:00
|
|
|
;; :demand t)
|
2023-05-30 09:27:29 -08:00
|
|
|
;; (use-package vertico-posframe
|
|
|
|
;; :after vertico
|
|
|
|
;; :if (display-graphic-p)
|
|
|
|
;; :config (vertico-posframe-mode))
|
2023-12-13 19:20:29 -09:00
|
|
|
;; (use-package hl-column ; disabled because visual yuck
|
|
|
|
;; :if (display-graphic-p)
|
|
|
|
;; :config
|
|
|
|
;; (defun hl-col-line-init ()
|
|
|
|
;; "Toggle both `hl-column-mode' and `hl-line-mode' in sync."
|
|
|
|
;; (interactive)
|
|
|
|
;; (hl-line-mode 'toggle)
|
|
|
|
;; (hl-column-mode 'toggle))
|
|
|
|
;; :custom-face
|
|
|
|
;; (hl-line
|
|
|
|
;; ((t (:background "#101010"))))
|
|
|
|
;; (hl-column
|
|
|
|
;; ((t (:inherit hl-line))))
|
|
|
|
;; :hook (prog-mode . hl-col-line-init))
|
2024-01-23 07:50:42 -09:00
|
|
|
;; (if (display-graphic-p)
|
|
|
|
;; (unless (string= (getenv "XDG_SESSION_DESKTOP") "hyprland")
|
|
|
|
;; (progn
|
|
|
|
;; (add-to-list 'load-path "~/.local/src/holo-layer")
|
|
|
|
;; (require 'holo-layer)
|
|
|
|
;; (setq holo-layer-enable-cursor-animation t)
|
|
|
|
;; (setq holo-layer-cursor-color (face-attribute 'cursor :background))
|
|
|
|
;; (setq holo-layer-cursor-animation-duration 100)
|
|
|
|
;; (holo-layer-enable))))
|
|
|
|
|
|
|
|
;; (use-package oauth
|
2024-02-01 15:47:26 -09:00
|
|
|
;; :git (:fetcher codeberg
|
2024-01-23 07:50:42 -09:00
|
|
|
;; :repo "https://codeberg.org/martianh/emacs-oauth"
|
|
|
|
;; :url "https://codeberg.org/martianh/emacs-oauth")
|
|
|
|
;; :custom (oauth-nonce-function 'oauth-internal-make-nonce))
|
|
|
|
;; ;; (elpaca-wait)
|
|
|
|
;; (use-package tumblesocks
|
2024-02-01 15:47:26 -09:00
|
|
|
;; :git (:fetcher codeberg
|
2024-01-23 07:50:42 -09:00
|
|
|
;; :repo "https://codeberg.org/gargle/tumblesocks"
|
|
|
|
;; :url "https://codeberg.org/gargle/tumblesocks")
|
|
|
|
;; :custom (tumblesocks-blog "mirqmarq428.tumblr.com")
|
|
|
|
;; )
|
2023-12-15 09:55:41 -09:00
|
|
|
;;; disabled because i cant make it look good
|
|
|
|
;; (use-package prism
|
2024-02-01 15:47:26 -09:00
|
|
|
;; :git (:host github :repo "alphapapa/prism.el")
|
2023-12-15 09:55:41 -09:00
|
|
|
;; :custom (prism-colors '()))
|
|
|
|
|
2024-01-23 08:01:12 -09:00
|
|
|
(provide 'mir-packages)
|
|
|
|
;;; mir-packages.el ends here
|