-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bashrc
46 lines (34 loc) · 1.27 KB
/
.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
LANG="en_US.utf8"
export LANG
export TERM=alacritty
alias ls='ls --color=auto'
alias gnome-multi-writer='sudo gnome-multi-writer'
alias vifm='~/.config/vifm/scripts/vifmrun'
alias pwdy='pwd | xclip -selection clipboard'
# get public IP
alias get-pip='curl -s https://icanhazip.com'
set show-all-if-ambiguous on
set show-all-if-unmodified on
set menu-complete-display-prefix on
bind '"\t": menu-complete'
bind '"\e[Z": menu-complete-backward'
for file in ${XDG_CONFIG_HOME:-$HOME/.config}/bash/{plugins,local}/*.bash; do
source "$file"
done
unset file
export PATH="/home/archy/.local/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/sbin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl:/usr/lib/jvm/default/bin:/opt/cuda/bin"
bind '"\C-H": backward-kill-word'
bind '"\C-P": previous-history'
bind '"\C-N": next-history'
export JDTLS_HOME=~/.cache/yay/jdtls
VISUAL=nvim
EDITOR=nvim
# BEGIN_KITTY_SHELL_INTEGRATION
if test -n "$KITTY_INSTALLATION_DIR" -a -e "$KITTY_INSTALLATION_DIR/shell-integration/bash/kitty.bash"; then source "$KITTY_INSTALLATION_DIR/shell-integration/bash/kitty.bash"; fi
# END_KITTY_SHELL_INTEGRATION
source ".bashrc_private"