Raphael Roberts 6 years ago
parent
commit
a282be5541
  1. 3
      custom.el
  2. 10
      settings.org

3
custom.el

@ -71,7 +71,8 @@
'(org-imenu-depth 5)
'(package-selected-packages
(quote
(ahk-mode
(better-shell
ahk-mode
realgud
format-all
autodisass-java-bytecode

10
settings.org

@ -184,7 +184,7 @@ This handy function is a customized ripoff of custom-save-all
"remote-shell" (expand-file-name "usr/bin/sh")
"remote-process-environment" (append (list (concat "PREFIX=" default-directory "usr")) tramp-remote-process-environment)
"remote-path" (append (mapcar 'expand-file-name '("home/.local/bin" "usr/bin" "usr/bin/applets")) '("/sbin" "/vendor/bin" "/system/sbin" "/system/bin" "/system/xbin"))))))
(rlbr/add-config-to-tramp "/ssh:termux.*:" android-config)))
(rlbr/add-config-to-tramp (rx "/" (or "scp" "ssh") (zero-or-one "x") ":" "termux" (zero-or-more any) ":") android-config)))
#+END_SRC
* Major modes
** C
@ -542,6 +542,14 @@ put executables in elpy-rpc-venv in path
:config
(elmacro-mode +1))
#+END_SRC
** Better shell
#+BEGIN_SRC emacs-lisp
(use-package better-shell
:bind
(("C-M-;" . better-shell-shell)
("C-M-:" . better-shell-remote-open)
("C-#" . better-shell-sudo-here)))
#+END_SRC
* Navigation/auto-completion
** Ace window
#+BEGIN_SRC emacs-lisp

Loading…
Cancel
Save