mirror of
https://github.com/SqrtMinusOne/dotfiles.git
synced 2025-12-11 03:33:03 +03:00
feat(emacs): tried eaf, aw-mode
This commit is contained in:
parent
63ebaff53c
commit
c872a03c98
2 changed files with 34 additions and 13 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue