mirror of
https://github.com/pestctrl/emacs-config.git
synced 2026-06-14 12:21:20 +00:00
Added dired+
This commit is contained in:
parent
cb86965939
commit
50bdf891aa
3 changed files with 11 additions and 14 deletions
3
.gitmodules
vendored
3
.gitmodules
vendored
|
|
@ -4,3 +4,6 @@
|
|||
[submodule "custom/youtube-dl-emacs"]
|
||||
path = custom/youtube-dl-emacs
|
||||
url = https://github.com/skeeto/youtube-dl-emacs
|
||||
[submodule "custom/dired-plus"]
|
||||
path = custom/dired-plus
|
||||
url = https://github.com/emacsmirror/dired-plus
|
||||
|
|
|
|||
21
config.org
21
config.org
|
|
@ -278,7 +278,6 @@
|
|||
(define-key term-raw-map (kbd "C-c C-y") 'term-paste)
|
||||
(define-key term-raw-map (kbd "M-x") 'helm-M-x)))
|
||||
#+END_SRC
|
||||
|
||||
* My variables alist
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(defvar my/variable-alist-file "~/.emacs.d/codertilldeath_variables.el")
|
||||
|
|
@ -869,7 +868,7 @@
|
|||
(global-set-key "\C-ca" 'org-agenda)
|
||||
(global-set-key "\C-cc" 'org-capture)
|
||||
(global-set-key "\C-cb" 'org-iswitchb)
|
||||
(global-set-key (kbd "<f12>") 'org-agenda)
|
||||
(global-set-key (kbd "<f5>") 'org-agenda)
|
||||
(global-set-key (kbd "<f11>") (lambda () (interactive) (org-agenda "" "g")))
|
||||
(global-set-key (kbd "<f9>") 'org-capture)
|
||||
(global-set-key (kbd "C-x C-o") 'org-switchb)
|
||||
|
|
@ -1951,6 +1950,12 @@
|
|||
(define-key pdf-view-mode-map (kbd "d") (lambda () (interactive) (pdf-view-next-line-or-next-page 8)))
|
||||
(define-key pdf-view-mode-map (kbd "u") (lambda () (interactive) (pdf-view-previous-line-or-previous-page 8)))
|
||||
#+END_SRC
|
||||
** Dired+
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(add-to-list 'load-path
|
||||
"~/.emacs.d/custom/dired-plus")
|
||||
(require 'dired+)
|
||||
#+END_SRC
|
||||
* Broken
|
||||
** mu4e
|
||||
*** General config
|
||||
|
|
@ -2034,18 +2039,6 @@
|
|||
(setq org-wunderlist-file "~/MEGA/org/agenda/Wunderlist.org"
|
||||
org-wunderlist-dir "~/MEGA/org/agenda/org-wunderlist/")
|
||||
#+END_SRC
|
||||
** Dired+
|
||||
#+BEGIN_SRC emacs-lisp#
|
||||
(use-package dired+
|
||||
:quelpa (dired+ :fetcher url :url "https://www.emacswiki.org/emacs/download/dired+.el")
|
||||
:defer 1
|
||||
:init
|
||||
(setq diredp-hide-details-initially-flag nil)
|
||||
(setq diredp-hide-details-propagate-flag nil)
|
||||
|
||||
:config
|
||||
(diredp-toggle-find-file-reuse-dir 1))
|
||||
#+END_SRC
|
||||
* Disabled
|
||||
** nnreddit
|
||||
#+BEGIN_SRC emacs-lisp#
|
||||
|
|
|
|||
1
custom/dired-plus
Submodule
1
custom/dired-plus
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit b9d7d09e37cef5ab778def5c55ac8989cc4d0a4a
|
||||
Loading…
Reference in a new issue