emacs/lisp/mir-packages.el

86 lines
2.8 KiB
EmacsLisp
Raw Permalink Normal View History

;;; 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-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
;; :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))
2023-01-15 20:00:48 -09:00
;; (elpaca nil
;; (use-package exwm
;; :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
;; (use-package ani-el
;; :git (ani-el
;; :repo "https://git.marq42.xyz/mir/ani-el"
;; :files ("ani-el.el" "lib")))
2022-07-05 20:56:48 -08:00
;; (use-package hypop
;; :if (display-graphic-p)
;; :git (:repo "https://git.marq42.xyz/mir/hypop.el")
;; :demand t)
;; (use-package vertico-posframe
;; :after vertico
;; :if (display-graphic-p)
;; :config (vertico-posframe-mode))
;; (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))
;; (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
;; :git (:fetcher codeberg
;; :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
;; :git (:fetcher codeberg
;; :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
;; :git (:host github :repo "alphapapa/prism.el")
2023-12-15 09:55:41 -09:00
;; :custom (prism-colors '()))
(provide 'mir-packages)
;;; mir-packages.el ends here