added bashrc and editet readme
This commit is contained in:
parent
c0d415c772
commit
41a768508b
1 changed files with 36 additions and 0 deletions
36
bashrc
Normal file
36
bashrc
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
#
|
||||||
|
# ~/.bashrc
|
||||||
|
#
|
||||||
|
|
||||||
|
# If not running interactively, don't do anything
|
||||||
|
[[ $- != *i* ]] && return
|
||||||
|
|
||||||
|
alias ls='ls --color=auto'
|
||||||
|
alias grep='grep --color=auto'
|
||||||
|
PS1='[\u@\h \W]\$ '
|
||||||
|
|
||||||
|
|
||||||
|
## user generated stuff for wayland
|
||||||
|
export XDG_SESSION_TYPE="wayland"
|
||||||
|
export QT_QPA_PLATFORM="wayland;xcb"
|
||||||
|
export SDL_VIDEODRIVER="wayland,x11"
|
||||||
|
export _JAVA_AWT_WM_NONREPARENTING=1
|
||||||
|
export MOZ_ENABLE_WAYLAND=1
|
||||||
|
export BEMENU_BACKEND=wayland
|
||||||
|
|
||||||
|
## Theming
|
||||||
|
export GTK_THEME="Adwaita:dark"
|
||||||
|
export QT_STYLE_OVERRIDE=adwaita-dark
|
||||||
|
|
||||||
|
## Shell
|
||||||
|
eval "$(starship init bash)"
|
||||||
|
alias ls="exa"
|
||||||
|
alias ll="exa -l -g --icons --git"
|
||||||
|
alias llt="exa -1 --icons --tree --git-ignore"
|
||||||
|
alias cat="bat"
|
||||||
|
alias find="fd"
|
||||||
|
alias ps="procs"
|
||||||
|
alias du="dust"
|
||||||
|
alias grep="rg"
|
||||||
|
alias top="btm"
|
||||||
|
alias vimdiff="delta"
|
Loading…
Reference in a new issue