Browse Source

wrong bracket in w32-get-true-file-attributes + some formattings

master
Marc Pohling 4 years ago
parent
commit
f11f0f9cab
1 changed files with 31 additions and 32 deletions
  1. 63
      init.org

63
init.org

@ -4,29 +4,28 @@
#+PROPERTY: header-args :tangle yes
* TODOS
- Paket exec-path-from-shell, um PATH aus Linux auch in emacs zu haben
- Smart mode line?
- Theme
- evil-collection or custom in init file?
- Hydra
- General
- (defalias 'list-buffers 'ibuffer) ;; change default to ibuffer
- ido?
- treemacs (for linux)
- treemacs-evil?
- treemacs-projectile
- ace-window
- windmove?
- tramp (in linux)
- visual-regexp
- org configuration: paths
- org custom agenda
- org-ql (related to org agendas)
- org configuration: everything else
- beancount configuration from config.org
- CONTINUE TODO from config.org at Programming
- all-the-icons?
- Paket exec-path-from-shell, um PATH aus Linux auch in emacs zu haben
- Smart mode line?
- Theme
- evil-collection or custom in init file?
- Hydra
- General
- (defalias 'list-buffers 'ibuffer) ;; change default to ibuffer
- ido?
- treemacs (for linux)
- treemacs-evil?
- treemacs-projectile
- ace-window
- windmove?
- tramp (in linux)
- visual-regexp
- org configuration: paths
- org custom agenda
- org-ql (related to org agendas)
- org configuration: everything else
- beancount configuration from config.org
- CONTINUE TODO from config.org at Programming
- all-the-icons?
* Header
:PROPERTIES:
:ID: a14d7c89-24ea-41ae-b185-944bab49aa02
@ -36,10 +35,10 @@ Emacs variables are dynamically scoped. That's unusual for most languages, so di
;;; init.el --- -*- lexical-binding: t -*-
#+end_src
* First start
:PROPERTIES:
:ID: 1c24d48e-0124-4a0b-8e78-82e4c531e818
: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
:PROPERTIES:
:ID: 1c24d48e-0124-4a0b-8e78-82e4c531e818
: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
(require 'org')
@ -49,7 +48,7 @@ Emacs variables are dynamically scoped. That's unusual for most languages, so di
(byte-compile-file (concat user-emacs-directory "init.el"))
#+END_SRC
This function updates init.el whenever changes in init.org are made. The update will be active after saving.
This function updates init.el whenever changes in init.org are made. The update will be active after saving.
#+BEGIN_SRC emacs-lisp
(defun me/tangle-init ()
@ -94,9 +93,9 @@ Emacs variables are dynamically scoped. That's unusual for most languages, so di
#+END_SRC
* Default settings
:PROPERTIES:
:ID: 3512d679-d111-4ccd-8372-6fc2acbc0374
:END:
:PROPERTIES:
:ID: 3512d679-d111-4ccd-8372-6fc2acbc0374
:END:
#+BEGIN_SRC emacs-lisp
(defconst *sys/gui*
(display-graphic-p)
@ -191,7 +190,7 @@ Some windows specific stuff
(when (boundp 'w32-pipe-read-delay)
(setq w32-pipe-read-delay 0))
(when (boundp 'w32-get-true-file-attributes)
(setq )w32-get-true-file-attributes nil))
(setq w32-get-true-file-attributes nil)))
#+END_SRC
* visuals
** Font

Loading…
Cancel
Save