diff options
| author | Ahmed Abdelhalim <[email protected]> | 2026-01-17 18:23:31 +0100 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2026-01-17 18:23:31 +0100 |
| commit | 629cd5215aed217eeea6202cb02a7bf468574f0d (patch) | |
| tree | 1b6f0ec3795a81d4705a9edb0201d4dd84d9e6ca /.bashrc | |
| parent | 0b939a6b93f447186ae17202bbf29dce83903f71 (diff) | |
Fix LS colors on linux
Diffstat (limited to '.bashrc')
| -rw-r--r-- | .bashrc | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -3,7 +3,7 @@ export CLICOLOR=1 # Unix/Bash Readline custom colors (created by dircolors in bashrc) -# export LS_COLORS="$LS_COLORS:di=00;36:ln=00;35:ex=00;31" +export LS_COLORS="$LS_COLORS:di=00;36:ln=00;35:ex=00;31" export IGNOREEOF=42 # Ignore Ctrl+D logout terminal session export HISTSIZE=1000 # Num commands to remmember in a terminal session @@ -36,9 +36,10 @@ fi shopt -s checkwinsize # ==== Aliases +alias ls='ls --color=auto' +alias la='ls -a' alias spc="cd ~/Work/Space/" alias mb="cd ~/Work/MBition/" -alias la='ls -a' alias dirs="dirs -v" alias srv="python3 -m http.server" # start simple server alias tagme='ctags -R --languages=ruby --exclude=.git --exclude=log . $(bundle list --paths)' |
