|
@@ -32,9 +32,9 @@ however is that when you're trying your best to rice up i3, Emacs needs a padded
|
|
|
border.
|
|
|
#+BEGIN_SRC emacs-lisp
|
|
|
;; Applies to current frame
|
|
|
-(set-frame-parameter nil 'internal-border-width 30) ; applies to the current frame
|
|
|
+(set-frame-parameter nil 'internal-border-width 10) ; applies to the current frame
|
|
|
;; If we create new frames (via emacsclient) this will do the trick
|
|
|
-(add-to-list 'default-frame-alist '(internal-border-width . 30))
|
|
|
+(add-to-list 'default-frame-alist '(internal-border-width . 10))
|
|
|
#+END_SRC
|
|
|
** Fringe
|
|
|
#+BEGIN_SRC emacs-lisp
|
|
@@ -406,12 +406,13 @@ There's gotta be a way to get the token out of password-store for this.
|
|
|
** Key bindings
|
|
|
#+BEGIN_SRC emacs-lisp
|
|
|
(map! :leader
|
|
|
- (:prefix "y" ; For (y)acking
|
|
|
- :desc "Slack channels" "s" #'slack-start
|
|
|
- :desc "Slack channels" "c" #'slack-channel-select
|
|
|
- :desc "Slack IMs" "i" #'slack-im-select
|
|
|
- :desc "Slack groups" "g" #'slack-group-select
|
|
|
- :desc "Slack threads" "t" #'slack-all-threads))
|
|
|
+ (:prefix "o"
|
|
|
+ (:prefix ("s" . "+slack")
|
|
|
+ :desc "Slack channels" "S" #'slack-start
|
|
|
+ :desc "Slack channels" "s" #'slack-channel-select
|
|
|
+ :desc "Slack IMs" "i" #'slack-im-select
|
|
|
+ :desc "Slack groups" "g" #'slack-group-select
|
|
|
+ :desc "Slack threads" "t" #'slack-all-threads)))
|
|
|
#+END_SRC
|
|
|
* Beancount
|
|
|
Use Emacs and plain text files for your accounting!
|