Ensure ESS starts the R process in the current directory
Instead of the project root.
This commit is contained in:
parent
88716bf136
commit
fd0aac478a
1 changed files with 6 additions and 1 deletions
7
init.el
7
init.el
|
@ -360,7 +360,12 @@
|
|||
(julia-repl-set-terminal-backend 'vterm))
|
||||
|
||||
(use-package ess
|
||||
:straight t)
|
||||
:straight t
|
||||
:config
|
||||
(defun my-ess-startup-directory-function ()
|
||||
"Force ESS to use `default-directory' as its startup directory."
|
||||
default-directory)
|
||||
(setq ess-startup-directory-function 'my-ess-startup-directory-function))
|
||||
|
||||
(use-package paredit
|
||||
:straight t
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue