Advertisement
Guest User

Untitled

a guest
Aug 20th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. # Exports
  2. export TERM="xterm-256color"
  3. export EDITOR="nvim"
  4. export VISUAL="nvim"
  5.  
  6. # Aliases
  7. ## Editors
  8. alias e='nvim'
  9. alias vim='nvim'
  10. alias vi='nvim'
  11. ## Colors
  12. alias ls='ls --color=auto'
  13. alias dir='dir --color=auto'
  14. alias grep="grep --color=auto"
  15. ## Some more ls aliases
  16. alias ll='ls -alF'
  17. alias la='ls -A'
  18. alias l='ls -CF'
  19. alias cb='xclip -selection c'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement