summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2023-05-28 15:12:35 +0100
committerubq323 <ubq323@ubq323.website>2023-05-28 15:12:35 +0100
commitb9693018f280b7fec086e2e5c5921ce41c29fceb (patch)
tree7718dd059be7073282b23ea10583f709844debd3
parent098c750242a9c4b297e05aa91f82d97f085aebbd (diff)
move aliases and bashrc around
-rw-r--r--.aliases.bashrc18
-rw-r--r--.bashrc35
2 files changed, 30 insertions, 23 deletions
diff --git a/.aliases.bashrc b/.aliases.bashrc
new file mode 100644
index 0000000..419438f
--- /dev/null
+++ b/.aliases.bashrc
@@ -0,0 +1,18 @@
+
+alias ls='ls --color=auto'
+alias grep='grep --color=auto'
+alias xqr='xbps-query -R'
+alias xqrs='xbps-query -Rs'
+
+
+alias kb='kak ~/.bashrc'
+alias .b='source ~/.bashrc'
+
+alias l='ls -lah'
+
+apwd () {
+ pwd | sed -e 's!'"$HOME"'!~!'
+}
+
+alias mirror='mpv --untimed --profile=low-latency --vf=hflip /dev/video0'
+
diff --git a/.bashrc b/.bashrc
index 0c0ed32..d77d158 100644
--- a/.bashrc
+++ b/.bashrc
@@ -3,54 +3,43 @@
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
-alias ls='ls --color=auto'
-alias grep='grep --color=auto'
+# prompt
PROMPT_DIRTRIM=0
PS1='\[\e[90m\][\u@\h \W]\$\[\e[0m\] '
+# history
shopt -s histappend
HISTCONTROL=ignoreboth
HISTSIZE=1000000
HISTFILESIZE=1000000
-alias xqr='xbps-query -R'
-alias xqrs='xbps-query -Rs'
-
+# input
bind -s 'set completion-ignore-case on'
-
-
-alias kb='kak ~/.bashrc'
-alias .b='source ~/.bashrc'
-
-alias l='ls -lah'
-
-export XDG_CONFIG_HOME=$HOME/.config
-export EDITOR=kak
-
-apwd () {
- pwd | sed -e 's!'"$HOME"'!~!'
-}
-
-alias mirror='mpv --untimed --profile=low-latency --vf=hflip /dev/video0'
-
+# title
set_title () { printf "\e]2;%s\e\\" "$1"; }
_lastcmd () { history 1 | sed -e 's/^ *[0-9]* *//g' ; }
trap 'set_title "$(_lastcmd)"' DEBUG
PROMPT_COMMAND='history -a; set_title "$(apwd)"'
+# aliases
+. ~/.aliases.bashrc
+
+# environment
+export XDG_CONFIG_HOME=$HOME/.config
+export EDITOR=kak
+
+# paths
export LUA_PATH_5_3="$HOME/.local/lib/lua/5.3/?.lua;;"
export LUA_PATH_5_1="$HOME/.local/lib/lua/5.1/?.lua;;"
export LUA_CPATH_5_3="$HOME/.local/lib/lua/5.3/?.so;;"
export LUA_CPATH_5_1="$HOME/.local/lib/lua/5.1/?.so;;"
-
export MANPATH="$HOME/.local/share/man:"
add_path () {
export PATH="$1:$PATH"
}
-
add_path ~/.local/bin
add_path ~/bin