https://github.com/laluxx/dired-poke
https://github.com/laluxx/dired-poke
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/laluxx/dired-poke
- Owner: laluxx
- License: gpl-3.0
- Created: 2024-12-15T08:25:21.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-01-17T10:00:02.000Z (5 months ago)
- Last Synced: 2025-02-10T05:44:54.678Z (4 months ago)
- Language: Emacs Lisp
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
- License: LICENSE
Awesome Lists containing this project
README
#+TITLE: dired-poke
#+AUTHOR: Laluxx<<<<<<< HEAD
Poke arround the file system* Install
Clone it
#+begin_src shell
git clone https://github.com/laluxx/activate-emacs ~/.config/emacs/lisp/activate-emacs
#+end_src>Add to '~/.config/emacs/init.el'
#+begin_src elisp
(use-package dired-poke
:load-path "~/.config/emacs/lisp/dired-poke"
:config
(setq dired-poke-alist
`((?D . ,(expand-file-name "~/Desktop")) ; /d for Desktop
(?d . ,(expand-file-name "~/Downloads")) ; /D for Downloads
(?v . ,(expand-file-name "~/Videos")) ; /v for Videos
(?p . ,(expand-file-name "~/Pictures")) ; /p for Pictures
(?m . ,(expand-file-name "~/Music")) ; /m for Music
(?c . ,(expand-file-name "~/Documents")) ; /c for Documents
(?h . ,(expand-file-name "~/")) ; /h for Home
(?e . ,(expand-file-name "~/.config/emacs")) ; /e for Emacs config
(?o . ,(expand-file-name "~/org")) ; /o for Org directory
)))
#+end_src
=======
Jump to common places in the file system
>>>>>>> 7cf2e93 (initial commit)