mirror of https://github.com/Flinner/dots.git
feat: ????
This commit is contained in:
parent
92bd7bb90b
commit
3b3fa09b53
|
@ -592,6 +592,7 @@ Capture
|
||||||
** ivy
|
** ivy
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package ivy
|
(use-package ivy
|
||||||
|
:defer 2
|
||||||
:diminish
|
:diminish
|
||||||
:bind (("C-s" . swiper); TODO: move to Keybinds
|
:bind (("C-s" . swiper); TODO: move to Keybinds
|
||||||
:map ivy-minibuffer-map
|
:map ivy-minibuffer-map
|
||||||
|
@ -638,6 +639,7 @@ Ivy floating
|
||||||
** Counsel
|
** Counsel
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package counsel
|
(use-package counsel
|
||||||
|
:defer 2
|
||||||
:bind (("M-x" . counsel-M-x)
|
:bind (("M-x" . counsel-M-x)
|
||||||
;("C-x b" . counsel-ibuffer)
|
;("C-x b" . counsel-ibuffer)
|
||||||
("C-x C-f" . counsel-find-file)
|
("C-x C-f" . counsel-find-file)
|
||||||
|
@ -648,12 +650,15 @@ Ivy floating
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
** Which Key (Shows Next keys)
|
** Which Key (Shows Next keys)
|
||||||
|
slow loading! defer it
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package which-key
|
(use-package which-key
|
||||||
:init (which-key-mode)
|
:defer 9
|
||||||
:diminish which-key-mode
|
:diminish which-key-mode
|
||||||
:config (setq which-key-idle-delay 1
|
:config
|
||||||
which-key-max-display-columns 5))
|
(which-key-mode)
|
||||||
|
(setq which-key-idle-delay 1
|
||||||
|
which-key-max-display-columns 5))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
** Company Mode
|
** Company Mode
|
||||||
|
@ -725,8 +730,10 @@ use-package
|
||||||
:defer t
|
:defer t
|
||||||
:hook (org-mode . my/org-mode/org-mode-setup)
|
:hook (org-mode . my/org-mode/org-mode-setup)
|
||||||
(org-mode . my/org-mode/load-prettify-symbols); symbols
|
(org-mode . my/org-mode/load-prettify-symbols); symbols
|
||||||
|
(org-mode . auto-fill-mode)
|
||||||
:config
|
:config
|
||||||
(require 'org-tempo)
|
(require 'org-tempo)
|
||||||
|
(require 'org-habit)
|
||||||
(setq org-ellipsis " ⤵")
|
(setq org-ellipsis " ⤵")
|
||||||
(setq org-agenda-start-with-log-mode t)
|
(setq org-agenda-start-with-log-mode t)
|
||||||
(setq org-log-done 'time)
|
(setq org-log-done 'time)
|
||||||
|
@ -805,7 +812,8 @@ use-package
|
||||||
(org-bullets-bullet-list '("◉" "○" "●" "○" "●" "○" "●")))
|
(org-bullets-bullet-list '("◉" "○" "●" "○" "●" "○" "●")))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
** HOLD Auto Tangle Configuration Files
|
** CANCELED Auto Tangle Configuration Files
|
||||||
|
CLOSED: [2021-07-30 Fri 12:52]
|
||||||
Automatically tangle our Emacs.org config file when we save it
|
Automatically tangle our Emacs.org config file when we save it
|
||||||
#+begin_src emacs-lisp :tangle no
|
#+begin_src emacs-lisp :tangle no
|
||||||
(defun my/org-mode/org-babel-tangle-config ()
|
(defun my/org-mode/org-babel-tangle-config ()
|
||||||
|
@ -938,6 +946,12 @@ Allow fast code insertion
|
||||||
;; TODO check this
|
;; TODO check this
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
|
*** habits
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(setq org-habit-graph-column 80 ; prevent overwriting title
|
||||||
|
org-habit-show-all-today t) ; show even if DONE
|
||||||
|
#+end_src
|
||||||
|
|
||||||
** org-pomodoro
|
** org-pomodoro
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package org-pomodoro
|
(use-package org-pomodoro
|
||||||
|
|
|
@ -890,7 +890,7 @@ c.content.cookies.store = True
|
||||||
|
|
||||||
## Enable JavaScript.
|
## Enable JavaScript.
|
||||||
## Type: Bool
|
## Type: Bool
|
||||||
# c.content.javascript.enabled = True
|
c.content.javascript.enabled = False
|
||||||
|
|
||||||
## Log levels to use for JavaScript console logging messages. When a
|
## Log levels to use for JavaScript console logging messages. When a
|
||||||
## JavaScript message with the level given in the dictionary key is
|
## JavaScript message with the level given in the dictionary key is
|
||||||
|
|
Loading…
Reference in New Issue