Compare commits
No commits in common. "437ccb937bf6ab7f158723734f4e672003bc3d17" and "e639f2e03ffee2aad27ca756eb3fece56fa8f296" have entirely different histories.
437ccb937b
...
e639f2e03f
2 changed files with 17 additions and 60 deletions
69
config.org
69
config.org
|
@ -76,13 +76,10 @@ Use a sane date style.
|
|||
(setq calendar-date-style 'european)
|
||||
#+end_src
|
||||
|
||||
** Turn off backup and lock files
|
||||
|
||||
Lock files don't play nice with npm.
|
||||
** Turn off backup files
|
||||
|
||||
#+begin_src emacs-lisp
|
||||
(setq-default backup-inhibited t)
|
||||
(setq create-lockfiles nil)
|
||||
#+end_src
|
||||
|
||||
** Performance tweaks
|
||||
|
@ -90,7 +87,7 @@ Lock files don't play nice with npm.
|
|||
As recommended by [[https://emacs-lsp.github.io/lsp-mode/page/performance/][lsp-mode]],
|
||||
|
||||
#+begin_src emacs-lisp
|
||||
(setq gc-cons-threshold (* 100 1024 1024)
|
||||
(setq gc-cons-threshold 100000000
|
||||
read-process-output-max (* 1024 1024))
|
||||
#+end_src
|
||||
|
||||
|
@ -586,15 +583,6 @@ An even better integration may be achieved when additionall using the [[https://
|
|||
:config (evil-collection-init))
|
||||
#+end_src
|
||||
|
||||
Additional I like to press =jk= for exiting normal mode, using [[https://github.com/emacsorphanage/key-chord/][key-chord]] this is possible.
|
||||
|
||||
#+begin_src emacs-lisp
|
||||
(use-package key-chord
|
||||
:config
|
||||
(key-chord-define evil-insert-state-map "jk" 'evil-normal-state)
|
||||
(key-chord-mode 1))
|
||||
#+end_src
|
||||
|
||||
* General packages
|
||||
** diminish-mode
|
||||
|
||||
|
@ -1135,10 +1123,10 @@ Make the column for categories wider.
|
|||
|
||||
#+begin_src emacs-lisp
|
||||
(setq org-agenda-prefix-format
|
||||
'((agenda . " %i %?-12t% s")
|
||||
(todo . " %i")
|
||||
(tags . " %i")
|
||||
(search . " %i")))
|
||||
'((agenda . " %i %-18:c%?-12t% s")
|
||||
(todo . " %i %-18:c")
|
||||
(tags . " %i %-18:c")
|
||||
(search . " %i %-18:c")))
|
||||
#+end_src
|
||||
|
||||
Finally define the org-agenda display using [[https://github.com/alphapapa/org-super-agenda][org-super-agenda]] by alphapapa.
|
||||
|
@ -1242,8 +1230,7 @@ Until now I did not think that I needed to keep a (personal) journal. But since
|
|||
(use-package org-journal
|
||||
:config (setq org-journal-dir "~/org/journal"
|
||||
org-journal-file-type 'monthly
|
||||
org-journal-find-file 'find-file
|
||||
org-journal-file-format "%Y-%m-%d.org")
|
||||
org-journal-find-file 'find-file)
|
||||
:bind (("C-c j j" . 'org-journal-new-entry)
|
||||
("C-c j s" . 'org-journal-new-scheduled-entry)
|
||||
("C-c j o" . 'org-journal-open-current-journal-file)
|
||||
|
@ -1362,6 +1349,8 @@ Source: [[https://github.com/org-roam/org-roam-bibtex][GitHub: org-roam/org-roam
|
|||
|
||||
** Org Roam UI
|
||||
|
||||
*Disabled since =org-roam-ui= is not yet released on Melpa.* And I currently have no time to setup or switch to =straight= (or to put it better: it is currently not important enough for me).
|
||||
|
||||
A graphical frontend for exploring your org-roam Zettelkasten
|
||||
|
||||
Source: [[https://github.com/org-roam/org-roam-ui][GitHub: org-roam/org-roam-ui]]
|
||||
|
@ -1509,17 +1498,6 @@ Source: [[https://github.com/company-mode/company-mode][GitHub: company-mode]]
|
|||
company-dabbrev-downcase nil))
|
||||
#+end_src
|
||||
|
||||
** flycheck
|
||||
|
||||
Flycheck is a syntax checking extension for Emacs which uses specialized command line tools for the languages it supports. Next to the linting and highlighting of errors it does on its own it also integrates nicely into lsp-mode.
|
||||
|
||||
Source: [[https://www.flycheck.org][flycheck.org]]
|
||||
|
||||
#+begin_src emacs-lisp
|
||||
(use-package flycheck
|
||||
:init (global-flycheck-mode))
|
||||
#+end_src
|
||||
|
||||
** lsp
|
||||
|
||||
Language Server Protocoll capabilities for Emacs
|
||||
|
@ -1537,14 +1515,12 @@ Source: [[https://github.com/emacs-lsp/lsp-mode][GitHub:emacs-lsp/lsp-mode]]
|
|||
(js-mode . lsp-deferred)
|
||||
(lsp-mode . lsp-enable-which-key-integration))
|
||||
:commands (lsp lsp-deferred)
|
||||
:init (setq lsp-keymap-prefix "C-c C-l")
|
||||
:config (setq lsp-prefer-capf t))
|
||||
:config
|
||||
(setq lsp-keymap-prefix "C-s-l"
|
||||
lsp-prefer-capf t))
|
||||
|
||||
(use-package lsp-ui
|
||||
:commands lsp-ui-mode
|
||||
:config
|
||||
(setq lsp-ui-sideline-show-code-actions t
|
||||
lsp-ui-sideline-show-hover t))
|
||||
:commands lsp-ui-mode)
|
||||
|
||||
(use-package lsp-ivy
|
||||
:commands lsp-ivy-workspace-symbol)
|
||||
|
@ -1609,19 +1585,7 @@ Source: [[https://github.com/emacs-typescript/typescript.el][GitHub: emacs-types
|
|||
|
||||
#+begin_src emacs-lisp
|
||||
(use-package typescript-mode
|
||||
:mode "\\.ts\\'"
|
||||
:config
|
||||
(setq typescript-indent-level 2))
|
||||
#+end_src
|
||||
|
||||
** JavaScript
|
||||
|
||||
Load the built-in JavaScript mode to set it's indentation.
|
||||
|
||||
#+begin_src emacs-lisp
|
||||
(use-package js
|
||||
:config
|
||||
(setq js-indent-level 2))
|
||||
:mode "\\.ts\\'")
|
||||
#+end_src
|
||||
|
||||
** Web Mode
|
||||
|
@ -1644,10 +1608,7 @@ Source: [[https://github.com/fxbois/web-mode][GitHub: fxbois/web-mode]]
|
|||
:config
|
||||
(setq web-mode-script-padding 0)
|
||||
(setq web-mode-code-indent-offset 2)
|
||||
(setq web-mode-markup-indent-offset 2)
|
||||
(setq web-mode-css-indent-offset 2)
|
||||
(setq web-mode-style-padding 0)
|
||||
(setq web-mode-enable-comment-annotation t))
|
||||
(setq web-mode-markup-indent-offset 2))
|
||||
#+end_src
|
||||
|
||||
** YAML
|
||||
|
|
|
@ -48,11 +48,7 @@
|
|||
(mmk2410/tab-bar-switch-or-create
|
||||
"Agenda"
|
||||
#'(lambda ()
|
||||
(org-agenda nil "c")
|
||||
(sit-for 1)
|
||||
(split-window-horizontally)
|
||||
(other-window 1)
|
||||
(org-journal-open-current-journal-file))))
|
||||
(org-agenda nil "a"))))
|
||||
|
||||
(defun mmk2410/tab-bar-run-journal ()
|
||||
(interactive)
|
||||
|
@ -65,7 +61,7 @@
|
|||
(mmk2410/tab-bar-switch-or-create
|
||||
"Projects"
|
||||
#'(lambda ()
|
||||
(find-file "~/org/projects.org"))))
|
||||
(find-file "~/org/work.projects.org"))))
|
||||
|
||||
(defhydra mmk2410/tab-bar (:color teal :hint nil)
|
||||
"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue