initial commit
This commit is contained in:
commit
b4d7e3e82d
|
@ -0,0 +1,35 @@
|
|||
alias la='ls -lha --group-directories-first --time-style=+"%d.%m.%Y %H:%M" --color=auto -F'
|
||||
alias ll='ls -lh --group-directories-first --time-style=+"%d.%m.%Y %H:%M" --color=auto -F'
|
||||
alias ls='ls --color=auto'
|
||||
|
||||
alias cp='cp -i'
|
||||
|
||||
alias df='df -h'
|
||||
|
||||
alias egrep='egrep --colour=auto'
|
||||
alias fgrep='fgrep --colour=auto'
|
||||
alias hgrep='history | grep --color=auto'
|
||||
|
||||
alias grep='grep --colour=auto'
|
||||
alias grepef='grep --exclude-from .ignorefiles'
|
||||
|
||||
|
||||
alias rcp='rsync --progress --size-only --verbose -rh'
|
||||
|
||||
alias cdr='ranger --choosedir=/tmp/rangerdir; LASTDIR=`cat /tmp/rangerdir`; cd "$LASTDIR"'
|
||||
|
||||
|
||||
alias telegram='telegram-cli -NAW -s ~/.telegram-cli/notify.lua'
|
||||
|
||||
alias ytdl='youtube-dl --write-info-json --write-description --no-playlist'
|
||||
alias ytdlb='youtube-dl --write-info-json --write-description --no-playlist -a'
|
||||
|
||||
alias sftpsb='sftp psb18896@psb18896.seedbox.io'
|
||||
|
||||
alias walrun='~/.config/wal/wal_run_noqute.sh'
|
||||
alias walrunlight='~/.config/wal/wal_run_light.sh'
|
||||
alias walrunqb='~/.config/wal/wal_run.sh'
|
||||
|
||||
alias kittyx='nohup kitty &'
|
||||
|
||||
# wtf?
|
|
@ -0,0 +1,27 @@
|
|||
[[ "$XDG_CURRENT_DESKTOP" == "KDE" ]] || [[ "$XDG_CURRENT_DESKTOP" == "GNOME" ]] || export QT_QPA_PLATFORMTHEME="qt5ct"
|
||||
|
||||
export EDITOR=/usr/bin/vim
|
||||
export BROWSER=/usr/bin/qutebrowser
|
||||
|
||||
export PATH=~/.npm-global/bin:$PATH
|
||||
export PATH=$(ruby -r rubygems -e "puts Gem.user_dir")/bin:$PATH
|
||||
export PATH=/home/ray/.bin:/home/ray/.local/bin:/home/ray/.config/composer/vendor/bin:$PATH
|
||||
|
||||
|
||||
# fzf + ag config
|
||||
export FZF_DEFAULT_COMMAND='ag --nocolor -g ""'
|
||||
|
||||
#disable suspend and resume
|
||||
stty -ixon
|
||||
#
|
||||
# wal
|
||||
(cat ~/.cache/wal/sequences &)
|
||||
|
||||
# autoenv activate
|
||||
source ~/.local/bin/activate.sh
|
||||
|
||||
# custom aliases
|
||||
[[ -f ~/.config/profile//aliases.sh ]] && . ~/.config/profile/aliases.sh
|
||||
|
||||
|
||||
# vim: filetype=sh
|
Loading…
Reference in New Issue