Added new packages/emojis

This commit is contained in:
Chad Nelson 2025-02-27 10:17:14 -07:00
parent 74252abbf7
commit 1672be94af
11 changed files with 58 additions and 2 deletions

6
.gitignore vendored
View file

@ -17,4 +17,10 @@ tree-sitter
!.dir-locals.el
eshell
request
<<<<<<< HEAD
>>>>>>> be5987a (added dir locals to allow emacs submodule as a project)
=======
/.cache/
/mastodon.plstore
/persist/
>>>>>>> c7ec4a3 (Added new packages/emojis)

BIN
emojis/custom/guix.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

View file

@ -5,7 +5,7 @@
:config
;; Disable tool-bar
(tool-bar-mode -1)
;; Enable horizontal mouse scroll
(setq mouse-wheel-tilt-scroll t)

View file

@ -5,3 +5,20 @@
(vertico-mode)
(vertico-mouse-mode))
#+end_src
#+begin_src elisp
(use-package mini-popup
:vc (:url "https://github.com/minad/mini-popup"
:branch "main")
:disabled
:config
(mini-popup-mode))
#+end_src
#+begin_src elisp
(use-package vertico-posframe
:vc (:url "https://github.com/tumashu/vertico-posframe"
:branch "main")
:config
(vertico-posframe-mode 1))
#+end_src

View file

@ -0,0 +1,4 @@
#+begin_src elisp
(use-package all-the-icons
:ensure t)
#+end_src

View file

@ -1,6 +1,7 @@
#+begin_src elisp
(use-package dired-sidebar
:ensure t
:disabled
:commands (dired-sidebar-toggle-sidebar)
:config
(setq dired-sidebar-theme 'nerd-icons))

View file

@ -7,6 +7,9 @@
doom-themes-enable-italic t) ; if nil, italics is universally disabled
(load-theme 'doom-one t)
(setq doom-themes-treemacs-theme "doom-atom") ; use "doom-colors" for less minimal icon theme
(doom-themes-treemacs-config)
;; Enable flashing mode-line on errors
(doom-themes-visual-bell-config)
;; Corrects (and improves) org-mode's native fontification.

View file

@ -8,7 +8,10 @@
("style" . "github")))
(":estus:" . (("name" . "Estus")
("image" . "~/.config/emacs/emojis/custom/estus.png")
("style" . "github")))))
("style" . "github")))
(":guix:" . (("name" . "Guix")
("image" . "~/.config/emacs/emojis/custom/guix.png")
("style" . "github")))))
(when (featurep 'emojify)
(emojify-set-emoji-data)))
#+END_SRC

View file

@ -0,0 +1,10 @@
#+begin_src elisp
(use-package treemacs
:ensure t
:hook
(dashboard-after-initialize-hook . treemacs)
:config
(treemacs-project-follow-mode)
(setq treemacs-project-follow-into-home t))
#+end_src

View file

@ -0,0 +1,7 @@
#+begin_src elisp
(use-package mastodon
:ensure t
:config
(setq mastodon-instance-url "https://fosstodon.org"
mastodon-active-user "superkamiguru"))
#+end_src

View file

@ -0,0 +1,5 @@
#+begin_src elisp
(use-package mpv
:ensure t)
#+end_src