Browse Source

deleted all org-id properties

master
Marc Pohling 4 years ago
parent
commit
034dc6d5d9
1 changed files with 0 additions and 90 deletions
  1. 90
      init.org

90
init.org

@ -26,9 +26,6 @@
- CONTINUE TODO from config.org at Programming
* First start
:PROPERTIES:
:ID: ec248005-527f-4fa1-bdef-9343f2fa28b0
:END:
When pulling the repository the first time, an initial init.el needs to be setup. After start it will replace itself with the configuration from init.org
#+BEGIN_SRC emacs-lisp :tangle no
@ -84,9 +81,6 @@
#+END_SRC
* Default settings
:PROPERTIES:
:ID: 00b48602-2a95-492e-a90b-c1e3a94c1ecb
:END:
#+BEGIN_SRC emacs-lisp
(setq *home_desktop* (string-equal (system-name) "marc")
,*home_laptop* (string-equal (system-name) "laptop")
@ -165,9 +159,6 @@ Some windows specific stuff
#+END_SRC
* visuals
** Font
:PROPERTIES:
:ID: cdfaaf73-b027-4b86-8d27-ebdce4b85009
:END:
#+BEGIN_SRC emacs-lisp
(if (string-equal system-type "gnu/linux")
(set-face-font 'default "Hack-10"))
@ -196,9 +187,6 @@ Windows Theme:
(load-theme 'ample-flat t))) ;; alternative ample, ample-light
#+END_SRC
** line wrappings
:PROPERTIES:
:ID: 60b1f231-ab1e-4c47-ac6d-262dc208a520
:END:
#+BEGIN_SRC emacs-lisp
(global-visual-line-mode)
(diminish 'visual-line-mode)
@ -214,9 +202,6 @@ Windows Theme:
; (add-hook 'visual-line-mode-hook 'my/activate-adaptive-wrap-prefix-mode)))
#+END_SRC
** line numbers
:PROPERTIES:
:ID: d3dfb79a-103a-4318-a5af-5a55e12674ce
:END:
#+BEGIN_SRC emacs-lisp
(use-package display-line-numbers
:init
@ -230,9 +215,6 @@ Windows Theme:
; (add-hook 'emacs-lisp-mode-hook 'display-line-numbers-mode)
#+END_SRC
** misc
:PROPERTIES:
:ID: f0f774d6-db13-4871-9192-d36e78120dde
:END:
#+BEGIN_SRC emacs-lisp
(use-package rainbow-mode
:ensure t
@ -241,9 +223,6 @@ Windows Theme:
emacs-lisp-mode) . rainbow-mode))
#+END_SRC
* undo
:PROPERTIES:
:ID: fde526fa-b053-48dd-9ac1-c443d987f4d2
:END:
#+BEGIN_SRC emacs-lisp
(use-package undo-tree
:ensure t
@ -252,9 +231,6 @@ Windows Theme:
(global-undo-tree-mode 1))
#+END_SRC
* imenu-list
:PROPERTIES:
:ID: 796d00db-aadb-412b-a291-619b029977f3
:END:
A minor mode to show imenu in a sidebar.
Call imenu-list-smart-toggle.
[[https://github.com/bmag/imenu-list][Source]]
@ -272,9 +248,6 @@ Windows Theme:
)
#+END_SRC
* which-key
:PROPERTIES:
:ID: 0a67aeb4-4060-4f4d-a7ff-61c70fe7ec7b
:END:
#+BEGIN_SRC emacs-lisp
(use-package which-key
:ensure t
@ -287,9 +260,6 @@ Windows Theme:
#+END_SRC
* Evil
:PROPERTIES:
:ID: a3389b7d-3833-42b7-97e1-413b8c4d9833
:END:
#+BEGIN_SRC emacs-lisp
(use-package evil
@ -299,9 +269,6 @@ Windows Theme:
(evil-mode 1))
#+END_SRC
* General (key mapper)
:PROPERTIES:
:ID: 027bdcf8-95c9-4e9b-88ba-6e9d3e5116c0
:END:
#+BEGIN_SRC emacs-lisp
(use-package general
:ensure t)
@ -315,9 +282,6 @@ Windows Theme:
"q" '(imenu-list-quit-window :which-key "quit"))
#+END_SRC
* ivy / counsel / swiper
:PROPERTIES:
:ID: c2146a70-03f4-4f60-9bce-094eec28cefe
:END:
#+BEGIN_SRC emacs-lisp
; (require 'ivy)
@ -357,9 +321,6 @@ Windows Theme:
#+END_SRC
* company
:PROPERTIES:
:ID: 1630ac5e-7467-458c-940c-4f724e283813
:END:
#+BEGIN_SRC emacs-lisp
; (require 'company)
@ -403,9 +364,6 @@ Windows Theme:
#+END_SRC
** company backends
:PROPERTIES:
:ID: 6ac59f9d-54e3-422d-883f-128fb172468d
:END:
#+BEGIN_SRC emacs-lisp
(defun company/org-mode-hook()
@ -425,9 +383,6 @@ Windows Theme:
#+END_SRC
* orgmode
** org
:PROPERTIES:
:ID: 3877251e-5ece-4006-baa6-1f1b4846a8f3
:END:
#+BEGIN_SRC emacs-lisp
(use-package org
:ensure org-plus-contrib
@ -458,9 +413,6 @@ Windows Theme:
org-src-tab-acts-natively t))
#+END_SRC
** languages
:PROPERTIES:
:ID: 467efd58-e928-4ccf-9ac4-d144eaede8ed
:END:
#+BEGIN_SRC emacs-lisp
(org-babel-do-load-languages
'org-babel-load-languages
@ -488,9 +440,6 @@ Windows Theme:
(setq org-confirm-babel-evaluate 'me--org-confirm-babel-evaluate)
#+END_SRC
** habits
:PROPERTIES:
:ID: 61735b0c-5016-4697-80c6-beb7b3f27a1b
:END:
#+BEGIN_SRC emacs-lisp
(require 'org-habit) ;;TODO Lösung ohne require finden, scheint mir nicht ideal zu sein, nur um ein org-modul zu aktivieren
;; (add-to-list 'org-modules "org-habit")
@ -500,9 +449,6 @@ Windows Theme:
org-habit-show-habits-only-for-today nil)
#+END_SRC
** org-id
:PROPERTIES:
:ID: 017ef411-8239-4bfe-bbef-66b98a2971a9
:END:
Currently it causes some debugger errors "not a standard org time string", so it's disabled
#+BEGIN_SRC emacs-lisp
;; (use-package org-id
@ -512,9 +458,6 @@ Currently it causes some debugger errors "not a standard org time string", so it
#+END_SRC
** org-agenda
:PROPERTIES:
:ID: 10e65f59-ba2c-47e4-a40c-3097c15544aa
:END:
Custom keywords, depending on environment
#+BEGIN_SRC emacs-lisp
(when *work_remote*
@ -571,9 +514,6 @@ Customize the org agenda
org-super-agenda
** org-caldav
:PROPERTIES:
:ID: 58aa11ef-80f7-4629-a957-a9e00e070136
:END:
Vorerst deaktiviert, Nutzen evtl. nicht vorhanden
#+BEGIN_SRC emacs-lisp
;;(use-package org-caldav
@ -585,9 +525,6 @@ Vorerst deaktiviert, Nutzen evtl. nicht vorhanden
;; org-caldav-files (concat MY--PATH_ORG_FILES "tasks")))
#+END_SRC
** journal
:PROPERTIES:
:ID: 0b7243ac-049f-4b9c-a062-7a349c515133
:END:
[[https://github.com/bastibe/org-journal][Source]]
#+BEGIN_SRC emacs-lisp
@ -602,9 +539,6 @@ Vorerst deaktiviert, Nutzen evtl. nicht vorhanden
* Programming
** Magit / Git
:PROPERTIES:
:ID: a947f806-181d-4d33-9734-435849385b0b
:END:
Little crash course in magit:
- magit-init to init a git project
- magit-status (C-x g) to call the status window
@ -633,9 +567,6 @@ In status buffer:
#+END_SRC
** LSP
:PROPERTIES:
:ID: d529d096-ec38-42e6-91c9-099c1d8bdd06
:END:
Configuration for the language server protocol
*ACHTUNG* Dateipfad muss absolut sein, symlink im Pfad führt zumindest beim ersten Start zu Fehlern beim lsp
Sobald der lsp einmal lief, kann zukünftig der symlink-Pfad genommen werden.
@ -689,9 +620,6 @@ TODO Unterverzeichnisse wurden noch nicht getestet
#+END_SRC
** flycheck
:PROPERTIES:
:ID: c8090ddb-4f22-49ba-8ab1-1de132e1d772
:END:
#+BEGIN_SRC emacs-lisp
(use-package flycheck
:ensure t
@ -710,9 +638,6 @@ TODO Unterverzeichnisse wurden noch nicht getestet
#+END_SRC
** Projectile
:PROPERTIES:
:ID: 3cc5c1d2-1a5d-4d1a-bfeb-48de8172dd63
:END:
Manage projects and jump quickly between its files
#+BEGIN_SRC emacs-lisp
(use-package projectile
@ -733,9 +658,6 @@ Manage projects and jump quickly between its files
#+END_SRC
** smartparens
:PROPERTIES:
:ID: 04be375f-d100-47e7-99f1-af47a3139a54
:END:
#+BEGIN_SRC emacs-lisp
(use-package smartparens
:ensure t
@ -746,16 +668,10 @@ Manage projects and jump quickly between its files
#+END_SRC
** lisp
:PROPERTIES:
:ID: e5ce0263-3b21-460e-a037-3fe27d6e836a
:END:
#+BEGIN_SRC emacs-lisp
(add-hook 'emacs-lisp-mode-hook 'company/elisp-mode-hook)
#+END_SRC
** web
:PROPERTIES:
:ID: 5649b885-839f-48db-8b4f-8d594df7ebd8
:END:
apt install npm
sudo npm install -g vscode-html-languageserver-bin
@ -777,9 +693,6 @@ Manage projects and jump quickly between its files
#+END_SRC
** Python
:PROPERTIES:
:ID: cd4bbd1f-9980-42c9-a5af-aa808779d524
:END:
Systemseitig muss python-language-server installiert sein:
pip3 install 'python-language-server[all]'
@ -812,9 +725,6 @@ Manage projects and jump quickly between its files
#+END_SRC
* beancount
** Installation
:PROPERTIES:
:ID: 0c5f3396-4b08-4549-ac68-0c516cfd4435
:END:
#+BEGIN_SRC shell
sudo su
cd /opt

Loading…
Cancel
Save