eshell aliases and docker as root
This commit is contained in:
parent
10248773d7
commit
a7064f8007
2 changed files with 16 additions and 4 deletions
10
README.org
10
README.org
|
@ -732,7 +732,9 @@ I do a lot of docker management so having yaml is necessary
|
|||
Docker itself
|
||||
#+begin_src emacs-lisp
|
||||
(use-package docker
|
||||
:defer t)
|
||||
:defer t
|
||||
:config
|
||||
(setq docker-run-as-root t))
|
||||
#+end_src
|
||||
|
||||
Let's make sure docker is capable of using tramp.
|
||||
|
@ -808,6 +810,8 @@ I'm making a small function in here to open files in the appropriate program usi
|
|||
(message file)
|
||||
(call-process "xdg-open" nil 0 nil file)))
|
||||
|
||||
(setq dired-dwim-target t)
|
||||
|
||||
:general
|
||||
(chris/leader-keys
|
||||
:states 'normal
|
||||
|
@ -1674,7 +1678,9 @@ I love using eshell, so lets make some commands even easier with aliases.
|
|||
("ll" "ls -lah $*")
|
||||
("gg" "magit-status")
|
||||
("clear" "clear-scrollback")
|
||||
("!c" "eshell-previous-input 2")))
|
||||
("!c" "eshell-previous-input 2")
|
||||
("yay" "paru")
|
||||
("yeet" "paru -Rns")))
|
||||
#+end_src
|
||||
|
||||
** Sly
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue