Compare commits
5 commits
0c18e02686
...
706b396e1c
| Author | SHA1 | Date | |
|---|---|---|---|
| 706b396e1c | |||
| b79d782623 | |||
| 8ba598127b | |||
| 4aeb92eb6f | |||
| c3a188defe |
1 changed files with 27 additions and 8 deletions
35
config.org
35
config.org
|
|
@ -151,12 +151,6 @@ Use list-buffers bigger brother.
|
||||||
(global-set-key [remap list-buffers] 'ibuffer)
|
(global-set-key [remap list-buffers] 'ibuffer)
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
** Mark
|
|
||||||
|
|
||||||
#+begin_src emacs-lisp
|
|
||||||
(global-set-key (kbd "M-SPC") 'mark-word)
|
|
||||||
#+end_src
|
|
||||||
|
|
||||||
** Eldoc
|
** Eldoc
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
|
@ -211,6 +205,26 @@ https://endlessparentheses.com/leave-the-cursor-at-start-of-match-after-isearch.
|
||||||
)
|
)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
|
** Which-func
|
||||||
|
|
||||||
|
Show function we are currently in in the mode-line.
|
||||||
|
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(use-package which-func
|
||||||
|
:ensure nil
|
||||||
|
:defer t
|
||||||
|
:hook
|
||||||
|
(prog-mode-hook . which-function-mode)
|
||||||
|
)
|
||||||
|
#+END_SRC
|
||||||
|
|
||||||
|
** Line-numbers
|
||||||
|
|
||||||
|
Show line numbers.
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(global-display-line-numbers-mode t)
|
||||||
|
#+END_SRC
|
||||||
|
|
||||||
** Abbrev
|
** Abbrev
|
||||||
|
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
|
@ -625,6 +639,12 @@ For the keybindings, we have to defien them in both raw and line mode. From the
|
||||||
|
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package dashboard
|
(use-package dashboard
|
||||||
|
:custom
|
||||||
|
(dashboard-center-content t) ;; Center content
|
||||||
|
(dashboard-icon-type 'nerd-icons) ;; Nerd icons used
|
||||||
|
(dashboard-set-heading-icons t) ;; Heading icons enabled
|
||||||
|
(dashboard-set-file-icons t) ;; File icons enabled
|
||||||
|
(dashboard-startup-banner 'logo) ;; Use alternative logo
|
||||||
:config
|
:config
|
||||||
(dashboard-setup-startup-hook))
|
(dashboard-setup-startup-hook))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
@ -927,8 +947,7 @@ https://github.com/remyferre/comment-dwim-2
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package org-roam
|
(use-package org-roam
|
||||||
:defer t
|
:demand
|
||||||
:after org
|
|
||||||
:custom
|
:custom
|
||||||
(org-roam-directory "~/projects/notes")
|
(org-roam-directory "~/projects/notes")
|
||||||
(org-roam-completion-everywhere t)
|
(org-roam-completion-everywhere t)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue