removing a start of server sometimes and adding my bin dir
This commit is contained in:
parent
49c6fd5de8
commit
1011242495
|
@ -185,13 +185,13 @@ Let's also turn on =recentf-mode=.
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
Finally this is not part of the UI but let's do this early and start the server so I can use emacsclient from my WM.
|
Finally this is not part of the UI but let's do this early and start the server so I can use emacsclient from my WM.
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp :tangle no
|
||||||
(server-start)
|
(server-start)
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
I will also add my personal scripts to emacs' PATH
|
I will also add my personal scripts to emacs' PATH
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(add-to-list 'exec-path "/home/chris/scripts")
|
(add-to-list 'exec-path "/home/chris/bin")
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
Let's also set org-mode as the scratch buffer mode
|
Let's also set org-mode as the scratch buffer mode
|
||||||
|
|
6
init.el
6
init.el
|
@ -83,9 +83,7 @@
|
||||||
|
|
||||||
(recentf-mode +1)
|
(recentf-mode +1)
|
||||||
|
|
||||||
(server-start)
|
(add-to-list 'exec-path "/home/chris/bin")
|
||||||
|
|
||||||
(add-to-list 'exec-path "/home/chris/scripts")
|
|
||||||
|
|
||||||
(setq initial-major-mode 'org-mode)
|
(setq initial-major-mode 'org-mode)
|
||||||
(setq initial-scratch-message "#+TITLE: SCRATCH\n#+DESCRIPTION: This buffer is for temporary things")
|
(setq initial-scratch-message "#+TITLE: SCRATCH\n#+DESCRIPTION: This buffer is for temporary things")
|
||||||
|
@ -2364,6 +2362,8 @@ interfere with the default `bongo-playlist-buffer'."
|
||||||
;; If you edit it by hand, you could mess it up, so be careful.
|
;; If you edit it by hand, you could mess it up, so be careful.
|
||||||
;; Your init file should contain only one such instance.
|
;; Your init file should contain only one such instance.
|
||||||
;; If there is more than one, they won't work right.
|
;; If there is more than one, they won't work right.
|
||||||
|
'(pdf-misc-print-program "/usr/bin/lpr")
|
||||||
|
'(pdf-misc-print-program-args '("-o media=Letter" "-o fitplot"))
|
||||||
'(safe-local-variable-values
|
'(safe-local-variable-values
|
||||||
'((projectile-project-run-cmd . "./build/bin/presenter")
|
'((projectile-project-run-cmd . "./build/bin/presenter")
|
||||||
(projectile-project-compilation-cmd . "cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=1 -B build/ . && make -j8 --dir build/ && rm -rf ~/.cache/librepresenter/LibrePresenter/qmlcache/"))))
|
(projectile-project-compilation-cmd . "cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=1 -B build/ . && make -j8 --dir build/ && rm -rf ~/.cache/librepresenter/LibrePresenter/qmlcache/"))))
|
||||||
|
|
Loading…
Reference in a new issue