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
|
||||
|
||||
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)
|
||||
#+end_src
|
||||
|
||||
I will also add my personal scripts to emacs' PATH
|
||||
#+begin_src emacs-lisp
|
||||
(add-to-list 'exec-path "/home/chris/scripts")
|
||||
(add-to-list 'exec-path "/home/chris/bin")
|
||||
#+end_src
|
||||
|
||||
Let's also set org-mode as the scratch buffer mode
|
||||
|
|
6
init.el
6
init.el
|
@ -83,9 +83,7 @@
|
|||
|
||||
(recentf-mode +1)
|
||||
|
||||
(server-start)
|
||||
|
||||
(add-to-list 'exec-path "/home/chris/scripts")
|
||||
(add-to-list 'exec-path "/home/chris/bin")
|
||||
|
||||
(setq initial-major-mode 'org-mode)
|
||||
(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.
|
||||
;; Your init file should contain only one such instance.
|
||||
;; 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
|
||||
'((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/"))))
|
||||
|
|
Loading…
Reference in a new issue