Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. alias ..='cd ..'
  2. alias ls='ls -F --color --show-control-chars'
  3. alias ll='ls -l'
  4. alias la='ls -a'
  5. alias ltr='ls -ltr'
  6. alias 1='ls -1'
  7. alias g='git'
  8.  
  9. export LANG='ja_JP.utf8'
  10.  
  11. # Disable C-s and C-q
  12. stty stop undef
  13.  
  14. # Disable C-w
  15. stty werase undef
  16.  
  17. # Enable C-w for killing the word behind point to previous '/'
  18. bind '"\C-w": unix-filename-rubout'
  19.  
  20. # Set Conda
  21. readonly condash="/c/Users/name/Miniconda3/etc/profile.d/conda.sh"
  22.  
  23. if [[ -f "$condash" ]]; then
  24. source "$condash"
  25. fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement