more rearrangements
This commit is contained in:
parent
ce920a26d0
commit
60e032fac3
19
conf.org
19
conf.org
|
@ -354,8 +354,9 @@ desktop file exec directive."
|
||||||
(let ((cwd (expand-file-name default-directory)))
|
(let ((cwd (expand-file-name default-directory)))
|
||||||
(call-process "urxvt" nil 0 nil "-cd" cwd)))
|
(call-process "urxvt" nil 0 nil "-cd" cwd)))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
* completion
|
* editing
|
||||||
** company
|
** completion
|
||||||
|
*** company
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package company
|
(use-package company
|
||||||
:ensure t
|
:ensure t
|
||||||
|
@ -364,7 +365,7 @@ desktop file exec directive."
|
||||||
(setq company-idle-delay 0
|
(setq company-idle-delay 0
|
||||||
company-minimum-prefix-length 3))
|
company-minimum-prefix-length 3))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
** flycheck
|
*** flycheck
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package flycheck
|
(use-package flycheck
|
||||||
:ensure t
|
:ensure t
|
||||||
|
@ -378,7 +379,7 @@ desktop file exec directive."
|
||||||
flycheck-error-list-minimum-level 'warning
|
flycheck-error-list-minimum-level 'warning
|
||||||
flycheck-navigation-minimum-level 'warning))
|
flycheck-navigation-minimum-level 'warning))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
** yasnippet
|
*** yasnippet
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package yasnippet
|
(use-package yasnippet
|
||||||
:ensure t)
|
:ensure t)
|
||||||
|
@ -391,7 +392,6 @@ desktop file exec directive."
|
||||||
:config
|
:config
|
||||||
(yas-reload-all))
|
(yas-reload-all))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
* languages
|
|
||||||
** flyspell
|
** flyspell
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package flyspell-correct-helm
|
(use-package flyspell-correct-helm
|
||||||
|
@ -404,11 +404,12 @@ desktop file exec directive."
|
||||||
(add-hook 'prog-mode-hook #'flyspell-prog-mode)
|
(add-hook 'prog-mode-hook #'flyspell-prog-mode)
|
||||||
(setq flyspell-issue-message-flag nil)
|
(setq flyspell-issue-message-flag nil)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
** elisp
|
** languages
|
||||||
|
*** elisp
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(add-hook 'emacs-lisp-mode-hook 'company-mode)
|
(add-hook 'emacs-lisp-mode-hook 'company-mode)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
** ess
|
*** ess
|
||||||
NOTES:
|
NOTES:
|
||||||
- ess is not considered part of prog-mode for some reason
|
- ess is not considered part of prog-mode for some reason
|
||||||
- ess-mode requires a running R process for company to work
|
- ess-mode requires a running R process for company to work
|
||||||
|
@ -437,7 +438,7 @@ NOTES:
|
||||||
ess-history-file "session.Rhistory"
|
ess-history-file "session.Rhistory"
|
||||||
ess-history-directory (substitute-in-file-name "${XDG_CONFIG_HOME}/r/")))
|
ess-history-directory (substitute-in-file-name "${XDG_CONFIG_HOME}/r/")))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
** python
|
*** python
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(elpy-enable)
|
(elpy-enable)
|
||||||
|
|
||||||
|
@ -448,7 +449,7 @@ NOTES:
|
||||||
(setq tab-width 4)
|
(setq tab-width 4)
|
||||||
(setq python-indent 4)))
|
(setq python-indent 4)))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
** haskell
|
*** haskell
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package haskell-mode
|
(use-package haskell-mode
|
||||||
:ensure t
|
:ensure t
|
||||||
|
|
Loading…
Reference in New Issue