diff options
author | Thanos Apollo <[email protected]> | 2023-05-10 08:53:05 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-05-10 08:53:05 +0300 |
commit | 8c81519a064425c5b9a26db4ca336d416184515d (patch) | |
tree | 216491ec2e971bab0fd0e42be5f01c722233d2f9 /shells.org | |
parent | 4c0be5f03aebd63359b15775121184dfbfd7b9d1 (diff) |
shells: Remove --color from ls alias and node_modules path
Remove --color from ~ls~ because it messes up eshell colors.
Diffstat (limited to 'shells.org')
-rwxr-xr-x | shells.org | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -4,7 +4,6 @@ #+STARTUP: overview * Aliases #+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' @@ -30,7 +29,7 @@ # weather alias weather="curl wttr.in" - alias ls='ls -la --color' + alias ls='ls -la' alias sb='sudo systemctl start bluetooth' alias mykeys='setxkbmap -option caps:escape' alias logout='pkill -U $USER' @@ -54,7 +53,6 @@ #+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') export SHELL export PATH |