feat(emacs): tried eaf, aw-mode

This commit is contained in:
Pavel Korytov 2021-01-25 12:39:00 +03:00
parent 63ebaff53c
commit c872a03c98
2 changed files with 34 additions and 13 deletions

View file

@ -640,14 +640,15 @@ then it takes a second \\[keyboard-quit] to abort the minibuffer."
:config
(global-wakatime-mode))
#+end_src
*** OFF ActivityWatch
*** ActivityWatch
#+begin_src emacs-lisp
;; (use-package request
;; :straight t)
;;
;; (use-package activity-watch-mode
;; :straight t
;; (global-activitywatch-mode))
(use-package request
:straight t)
(use-package activity-watch-mode
:straight t
:config
(global-activity-watch-mode))
#+end_src
* Dired
#+begin_src emacs-lisp
@ -950,6 +951,7 @@ then it takes a second \\[keyboard-quit] to abort the minibuffer."
(setq org-crypt-key nil)
(add-hook 'org-babel-after-execute-hook 'org-redisplay-inline-images)
(add-hook 'org-mode-hook (lambda () (rainbow-delimiters-mode 0)))
#+end_src
* UI & UX
** GUI Settings
@ -1178,6 +1180,23 @@ then it takes a second \\[keyboard-quit] to abort the minibuffer."
(setq backup-inhibited t)
(setq auto-save-default nil)
#+end_src
* OFF EAF
Requirements: Node >= 14
#+begin_src bash :tangle no
pip install qtconsole markdown qrcode[pil] PyQt5 PyQtWebEngine
#+end_src
#+begin_src emacs-lisp :tangle no
(use-package eaf
:straight (:host github :repo "manateelazycat/emacs-application-framework" :files ("*"))
:init
(use-package epc :defer t :straight t)
(use-package ctable :defer t :straight t)
(use-package deferred :defer t :straight t)
:config
(require 'eaf-evil)
(setq eaf-evil-leader-key "SPC"))
#+end_src
* Programming
** LSP
*** lsp-mode

View file

@ -485,12 +485,13 @@ then it takes a second \\[keyboard-quit] to abort the minibuffer."
:config
(global-wakatime-mode))
;; (use-package request
;; :straight t)
;;
;; (use-package activity-watch-mode
;; :straight t
;; (global-activitywatch-mode))
(use-package request
:straight t)
(use-package activity-watch-mode
:straight t
:config
(global-activity-watch-mode))
(use-package dired
:ensure nil
@ -753,6 +754,7 @@ then it takes a second \\[keyboard-quit] to abort the minibuffer."
(setq org-crypt-key nil)
(add-hook 'org-babel-after-execute-hook 'org-redisplay-inline-images)
(add-hook 'org-mode-hook (lambda () (rainbow-delimiters-mode 0)))
;; Disable GUI elements
(tool-bar-mode -1)