clean up unused packages
This commit is contained in:
parent
12b5f38cf3
commit
357f8c8c69
1 changed files with 1 additions and 27 deletions
|
|
@ -144,15 +144,6 @@
|
||||||
:config
|
:config
|
||||||
(load-theme 'catppuccin :no-confirm))
|
(load-theme 'catppuccin :no-confirm))
|
||||||
#+end_src
|
#+end_src
|
||||||
** Ultra Scroll
|
|
||||||
#+begin_src emacs-lisp
|
|
||||||
(use-package ultra-scroll
|
|
||||||
:custom
|
|
||||||
(scroll-conservatively 3)
|
|
||||||
(scroll-margin 0)
|
|
||||||
:config
|
|
||||||
(ultra-scroll-mode 1))
|
|
||||||
#+end_src
|
|
||||||
* Functionality
|
* Functionality
|
||||||
** Navigation
|
** Navigation
|
||||||
*** Ace-Window
|
*** Ace-Window
|
||||||
|
|
@ -645,22 +636,5 @@ I'm running into weird performance issues with =pdf-tools=. I think it has to do
|
||||||
(newsticker-url-list-defaults nil)
|
(newsticker-url-list-defaults nil)
|
||||||
(newsticker-url-list
|
(newsticker-url-list
|
||||||
'(("Logic Arxiv" "https://rss.arxiv.org/rss/math.LO")
|
'(("Logic Arxiv" "https://rss.arxiv.org/rss/math.LO")
|
||||||
("Planet Emacslife" "https://planet.emacslife.com/atom.xml")
|
("Planet Emacslife" "https://planet.emacslife.com/atom.xml"))))
|
||||||
("It's Foss News" "https://news.itsfoss.com/latest/rss"))))
|
|
||||||
#+end_src
|
|
||||||
** Books
|
|
||||||
#+begin_src emacs-lisp
|
|
||||||
(defun wball/books ()
|
|
||||||
"Recursively search and open books from ~/Nextcloud/Books/."
|
|
||||||
(interactive)
|
|
||||||
(let* ((books-dir (expand-file-name "~/Nextcloud/Books/"))
|
|
||||||
(files (directory-files-recursively books-dir "\\.pdf$\\|\\.epub$\\|\\.djvu$" nil))
|
|
||||||
(relative-files (mapcar (lambda (f)
|
|
||||||
(string-remove-prefix books-dir f))
|
|
||||||
files))
|
|
||||||
(choice (completing-read "Book: " relative-files nil t)))
|
|
||||||
(when choice
|
|
||||||
(find-file (concat books-dir choice)))))
|
|
||||||
|
|
||||||
(global-set-key (kbd "C-c b") 'wball/books)
|
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue