Added new packages/emojis
This commit is contained in:
parent
74252abbf7
commit
1672be94af
11 changed files with 58 additions and 2 deletions
6
.gitignore
vendored
6
.gitignore
vendored
|
@ -17,4 +17,10 @@ tree-sitter
|
||||||
!.dir-locals.el
|
!.dir-locals.el
|
||||||
eshell
|
eshell
|
||||||
request
|
request
|
||||||
|
<<<<<<< HEAD
|
||||||
>>>>>>> be5987a (added dir locals to allow emacs submodule as a project)
|
>>>>>>> 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
BIN
emojis/custom/guix.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 20 KiB |
|
@ -5,3 +5,20 @@
|
||||||
(vertico-mode)
|
(vertico-mode)
|
||||||
(vertico-mouse-mode))
|
(vertico-mouse-mode))
|
||||||
#+end_src
|
#+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
|
||||||
|
|
4
src/modules/interface/all-the-icons.org
Normal file
4
src/modules/interface/all-the-icons.org
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
#+begin_src elisp
|
||||||
|
(use-package all-the-icons
|
||||||
|
:ensure t)
|
||||||
|
#+end_src
|
|
@ -1,6 +1,7 @@
|
||||||
#+begin_src elisp
|
#+begin_src elisp
|
||||||
(use-package dired-sidebar
|
(use-package dired-sidebar
|
||||||
:ensure t
|
:ensure t
|
||||||
|
:disabled
|
||||||
:commands (dired-sidebar-toggle-sidebar)
|
:commands (dired-sidebar-toggle-sidebar)
|
||||||
:config
|
:config
|
||||||
(setq dired-sidebar-theme 'nerd-icons))
|
(setq dired-sidebar-theme 'nerd-icons))
|
||||||
|
|
|
@ -7,6 +7,9 @@
|
||||||
doom-themes-enable-italic t) ; if nil, italics is universally disabled
|
doom-themes-enable-italic t) ; if nil, italics is universally disabled
|
||||||
(load-theme 'doom-one t)
|
(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
|
;; Enable flashing mode-line on errors
|
||||||
(doom-themes-visual-bell-config)
|
(doom-themes-visual-bell-config)
|
||||||
;; Corrects (and improves) org-mode's native fontification.
|
;; Corrects (and improves) org-mode's native fontification.
|
||||||
|
|
|
@ -8,7 +8,10 @@
|
||||||
("style" . "github")))
|
("style" . "github")))
|
||||||
(":estus:" . (("name" . "Estus")
|
(":estus:" . (("name" . "Estus")
|
||||||
("image" . "~/.config/emacs/emojis/custom/estus.png")
|
("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)
|
(when (featurep 'emojify)
|
||||||
(emojify-set-emoji-data)))
|
(emojify-set-emoji-data)))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
10
src/modules/interface/treemacs.org
Normal file
10
src/modules/interface/treemacs.org
Normal 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
|
7
src/modules/utility/mastodon.org
Normal file
7
src/modules/utility/mastodon.org
Normal 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
|
5
src/modules/utility/mpv.org
Normal file
5
src/modules/utility/mpv.org
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
#+begin_src elisp
|
||||||
|
(use-package mpv
|
||||||
|
:ensure t)
|
||||||
|
#+end_src
|
||||||
|
|
Loading…
Add table
Reference in a new issue