-
Notifications
You must be signed in to change notification settings - Fork 0
/
.bashrc
24 lines (20 loc) · 839 Bytes
/
.bashrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Sample .bashrc for SUSE Linux
# Copyright (c) SUSE Software Solutions Germany GmbH
# There are 3 different types of shells in bash: the login shell, normal shell
# and interactive shell. Login shells read ~/.profile and interactive shells
# read ~/.bashrc; in our setup, /etc/profile sources ~/.bashrc - thus all
# settings made here will also take effect in a login shell.
#
# NOTE: It is recommended to make language settings in ~/.profile rather than
# here, since multilingual X sessions would not work properly if LANG is over-
# ridden in every subshell.
test -s ~/.alias && . ~/.alias || true
. "$HOME/.cargo/env"
alias cd="z"
alias grep="rg --color=auto"
alias ls="eza --color"
alias cat="bat"
alias hx="helix"
alias dotslink="cd ~/.dotfiles && stow --adopt . && cd -"
eval "$(starship init bash)"
eval "$(zoxide init bash)"