confif/doom: move rdictcc to janeks user config

This commit is contained in:
xeruf 2022-08-08 23:43:53 +03:00
parent f30d026a9d
commit 575199e3e7
2 changed files with 6 additions and 6 deletions

View File

@ -827,12 +827,6 @@ Version 2019-11-04 2021-02-16"
) )
(setq ispell-personal-dictionary (expand-file-name "personal-dictionary" custom-emacs-data-dir)) (setq ispell-personal-dictionary (expand-file-name "personal-dictionary" custom-emacs-data-dir))
(use-package! rdictcc
:bind (("C-c t". 'rdictcc-translate-word-at-point)
("C-c T". 'rdictcc-translate-word))
:config (setq rdictcc-program-args "--directory $XDG_DATA_HOME/dictcc")
)
(after! tramp (after! tramp
(setq tramp-default-method "scpx") (setq tramp-default-method "scpx")
(add-to-list 'tramp-methods (add-to-list 'tramp-methods

View File

@ -29,3 +29,9 @@
(add-to-list 'recentf-list (expand-file-name "5-incubator/downloads/" user-data-dir)) (add-to-list 'recentf-list (expand-file-name "5-incubator/downloads/" user-data-dir))
(setq recentf-keep '(recentf-keep-default-predicate file-remote-p "/ssh:.*")) (setq recentf-keep '(recentf-keep-default-predicate file-remote-p "/ssh:.*"))
) )
(use-package! rdictcc
:bind (("C-c t". 'rdictcc-translate-word-at-point)
("C-c T". 'rdictcc-translate-word))
:config (setq rdictcc-program-args "--directory $XDG_DATA_HOME/dictcc")
)