add pass mayor mode, start systemcrafter in bg
This commit is contained in:
parent
8f5a806f23
commit
d90dcb2078
1 changed files with 20 additions and 4 deletions
24
init.org
24
init.org
|
@ -126,9 +126,6 @@ Also immediately set lexical binding mode.
|
||||||
;; Enable :elpaca use-package keyword.
|
;; Enable :elpaca use-package keyword.
|
||||||
(elpaca elpaca-use-package
|
(elpaca elpaca-use-package
|
||||||
(elpaca-use-package-mode))
|
(elpaca-use-package-mode))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
Tangle the init file if it has been updated. I maintain the same
|
Tangle the init file if it has been updated. I maintain the same
|
||||||
|
@ -433,6 +430,18 @@ up, which a totally different can of worms). A function
|
||||||
#+RESULTS:
|
#+RESULTS:
|
||||||
: shht!secret
|
: shht!secret
|
||||||
|
|
||||||
|
*** Major mode to edit pass keychain
|
||||||
|
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(use-package pass
|
||||||
|
:ensure t)
|
||||||
|
|
||||||
|
#+END_SRC
|
||||||
|
|
||||||
|
#+RESULTS:
|
||||||
|
: [nil 26721 10916 917127 nil elpaca-process-queues nil nil 78000 nil]
|
||||||
|
|
||||||
|
|
||||||
** Add a fully featured terminal emulator
|
** Add a fully featured terminal emulator
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
@ -769,6 +778,7 @@ See the excellent documentation on [[https://github.com/minad/consult][Minad's c
|
||||||
** Frequently used File Operations
|
** Frequently used File Operations
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(recentf-mode 1) ;; enable recent file tracking
|
||||||
(keymap-global-set "C-c f f" #'find-file)
|
(keymap-global-set "C-c f f" #'find-file)
|
||||||
(keymap-global-set "C-c f o" #'recentf)
|
(keymap-global-set "C-c f o" #'recentf)
|
||||||
(keymap-global-set "C-c f r" #'revert-buffer)
|
(keymap-global-set "C-c f r" #'revert-buffer)
|
||||||
|
@ -3565,9 +3575,15 @@ The commands this package offers:
|
||||||
"Watch SystemCrafters on Twitch"
|
"Watch SystemCrafters on Twitch"
|
||||||
(interactive)
|
(interactive)
|
||||||
(message "Watching SystemCrafters on Twitch...")
|
(message "Watching SystemCrafters on Twitch...")
|
||||||
(shell-command "mpv https://twitch.tv/SystemCrafters"))
|
(start-process "livestream" "*livestream*"
|
||||||
|
"mpv"
|
||||||
|
"--quiet"
|
||||||
|
"https://twitch.tv/SystemCrafters"))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
|
#+RESULTS:
|
||||||
|
: systemcrafters
|
||||||
|
|
||||||
|
|
||||||
* Finishing Touches
|
* Finishing Touches
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue