Updated config.org for some dashboard things

This commit is contained in:
qorg11 2022-03-07 19:23:05 +01:00
parent 5d4a4d6e8b
commit 2941ec5b39
No known key found for this signature in database
GPG key ID: 343FC20A4ACA62B9

View file

@ -3,7 +3,6 @@
* qorg's Emacs config * qorg's Emacs config
This is my Emacs configuration. Hope you like it. This is my Emacs configuration. Hope you like it.
** Installation ** Installation
@ -204,9 +203,8 @@ It should use your default shell by default.
(use-package alect-themes (use-package alect-themes
:ensure t :ensure t
:init(load-theme 'alect-black t)) :init(load-theme 'alect-black t))
(set-face-attribute 'default nil :font "Terminus 14" ) (set-face-attribute 'default nil :font "IBM Plex Mono 12")
(set-frame-font "Terminus 14") (set-frame-font "IBM Plex Mono 12")
#+end_src #+end_src
** ctrlf ** ctrlf
So, you know, C-s in emacs sucks, so this is a repleacement for that. So, you know, C-s in emacs sucks, so this is a repleacement for that.
@ -347,16 +345,10 @@ simple.
(display-line-numbers-mode -1)) (display-line-numbers-mode -1))
(defun kill-inner-word () (defun kill-inner-word ()
(interactive) (interactive)
(forward-word 1) (forward-char 1)
(backward-word) (backward-word)
(kill-word 1)) (kill-word 1)))
(global-set-key (kbd "C-x w k") 'kill-inner-word) (global-set-key (kbd "M-d") 'kill-inner-word)
(defun kill-word-good ()
(interactive)
(backward-word 1)
(kill-word 1))
(global-set-key (kbd "M-d") 'kill-word-good)
(global-set-key (kbd "M-.") 'repeat) (global-set-key (kbd "M-.") 'repeat)
(global-set-key (kbd "C-x k") 'kill-buffer) (global-set-key (kbd "C-x k") 'kill-buffer)
(global-set-key (kbd "C-x C-k") 'kill-current-buffer) (global-set-key (kbd "C-x C-k") 'kill-current-buffer)
@ -448,7 +440,7 @@ Multiple cursors :DD
#+begin_src emacs-lisp #+begin_src emacs-lisp
(use-package "multiple-cursors" (use-package "multiple-cursors"
:ensure t :ensure t
:bind ("C-q" . 'mc/mark-next-like-this)) :bind ("C-c q" . 'mc/mark-next-like-this))
#+end_src #+end_src
@ -482,8 +474,8 @@ And same but jumping between frames
#+begin_src emacs-lisp #+begin_src emacs-lisp
(use-package expand-region (use-package expand-region
:ensure t :ensure t
:init(global-unset-key (kbd "C-c C-q")) :init(global-unset-key (kbd "C-q"))
(global-set-key (kbd"C-c C-q") 'er/expand-region)) (global-set-key (kbd"C-q") 'er/expand-region))
#+end_src #+end_src
** Beacon mode ** Beacon mode
#+begin_src emacs-lisp #+begin_src emacs-lisp
@ -626,9 +618,22 @@ This thing add sane shortcuts for emacs
:bind("C-c s" . 'crux-create-scratch-buffer)) :bind("C-c s" . 'crux-create-scratch-buffer))
#+end_src #+end_src
* Dashboard * Dashboard
Dashboard. You can change The dashboard is a good index for your things. So it's useful to have
~/.emacs.d/img/logo.png it
own logo instead of Lain.
Here is an useful function I wrote so you can go to the dashboard (Or
create it in case you accidentally killed the buffer)
#+begin_src emacs-lisp
(defun goto-dashboard ()
(interactive)
(switch-to-buffer "*dashboard*")
;; In case it doesn't exist.
(dashboard-mode))
(global-set-key (kbd "C-c C-d") 'goto-dashboard)
#+end_src
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(use-package dashboard (use-package dashboard
:ensure t :ensure t