summaryrefslogtreecommitdiff
path: root/.config
diff options
context:
space:
mode:
Diffstat (limited to '.config')
-rw-r--r--.config/emacs/init.el20
1 files changed, 9 insertions, 11 deletions
diff --git a/.config/emacs/init.el b/.config/emacs/init.el
index 6b58342..14e2366 100644
--- a/.config/emacs/init.el
+++ b/.config/emacs/init.el
@@ -115,7 +115,7 @@
("\\<\\(NOTE\\):" 1 font-lock-warning-face t))))
(use-package emacs
- :ensure t
+ :ensure nil
:config
(if is-zeus
@@ -630,6 +630,10 @@
(setf magit-display-buffer-function #'magit-display-buffer-same-window-except-diff-v1)
:bind (:map project-prefix-map ("g" . 'project-magit)))
+(use-package magit-todos
+ :after magit
+ :config (magit-todos-mode 1))
+
(use-package corfu
:ensure t
:config
@@ -1156,6 +1160,10 @@ By default, returns all jabber related buffers format."
(format "qemu-system-x86_64 -enable-kvm -m %s -smp %s -hda %s -vga virtio -device virtio-serial-pci -netdev user,id=vmnic,hostfwd=tcp::2222-:22 -device e1000,netdev=vmnic %s"
memory cores image (if iso (concat "-cdrom " iso) "")))))
+(use-package 0x0
+ :straight nil
+ :ensure nil)
+
;; Misc Functions ;;
;;;;;;;;;;;;;;;;;;;;
@@ -1337,16 +1345,6 @@ Create a temporary frame to execute BODY, which will then be deleted."
(interactive)
(password-store-copy-field "fastmail.com/[email protected]" "smtp"))
-(defun thanos/0x0-upload (&optional file)
- "Upload FILE, in current directory, to 0x0.st."
- (interactive)
- (let ((file (or file (completing-read
- "Choose a file: "
- (seq-filter
- (lambda (file) (not (string-prefix-p "." file)))
- (directory-files default-directory))))))
- (async-shell-command (format "curl -F'file=@%s' https://0x0.st" file))))
-
(require 'server)
(unless (server-running-p)
(server-start))