diff options
-rwxr-xr-x | shells.org (renamed from org/shells.org) | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/org/shells.org b/shells.org index 4bf1a20..b8629a2 100755 --- a/org/shells.org +++ b/shells.org @@ -1,9 +1,9 @@ #+TITLE: Shells configuration -#+PROPERTY: +#+PROPERTY: header-args :mkdirp yes #+auto_tangle: t #+STARTUP: overview * Aliases -#+begin_src bash :tangle ../.shells/alias.sh +#+begin_src bash :tangle ~/.shells/alias.sh alias ll='ls -l' alias grep='grep --color=auto' alias anki='QTWEBENGINE_CHROMIUM_FLAGS="--disable-seccomp-filter-sandbox" anki' @@ -54,7 +54,7 @@ #+end_src * Exports -#+begin_src shell :tangle ../.shells/exports.sh +#+begin_src shell :tangle ~/.shells/exports.sh # Export 'SHELL' to child processes. Programs such as 'screen' # honor it and otherwise use /bin/sh. path+=('~/node_modules/.bin') @@ -75,7 +75,7 @@ #+end_src * bashrc -#+begin_src shell :tangle ../.bashrc +#+begin_src shell :tangle ~/.bashrc source ~/.shells/alias.sh source ~/.shells/exports.sh @@ -87,7 +87,7 @@ #+end_src * zshrc -#+begin_src bash :tangle ../.zshrc +#+begin_src bash :tangle ~/.zshrc source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh |