forked from samnang/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaliases
More file actions
25 lines (20 loc) · 617 Bytes
/
Copy pathaliases
File metadata and controls
25 lines (20 loc) · 617 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
alias v=nvim
alias vi=nvim
alias vim=nvim
alias ls='lsd'
alias lt='ls --tree --depth=2'
alias tree='lt'
alias g='git'
alias cd='z'
alias cat='bat'
alias du="ncdu --color dark -x --exclude .git --exclude node_modules"
alias vm='asdf'
alias grep='grep --color'
alias t='tail -f'
alias -g G='| grep'
alias -g H='| head'
alias -g T='| tail'
alias -g CP='| pbcopy'
alias dotfiles='cd ~/.dotfiles && nvim .' # Quick access to the ~/.dotfiles
alias zshrc='nvim ~/.zshrc' # Quick access to the ~/.zshrc file
alias tldr-list='tldr --list | fzf --preview "tldr {1} --color=always" --preview-window=right,70% | xargs tldr'