misc changes

This commit is contained in:
randomuser 2023-05-28 17:34:55 -05:00
parent 96fdd5cfcc
commit e3bab8d377
3 changed files with 15 additions and 1 deletions

View File

@ -63,6 +63,15 @@ start_bitlbee() {
bitlbee #-D -c $HOME/.config/bitlbee/config -d $HOME/.config/bitlbee/
}
dock-kill() {
docker stop $(
docker ps |
grep -v 'CONTAINER' |
fzy |
awk -F' ' '{print $1}'
)
}
alias gs='git status'
alias f=files
alias lofi="mpv https://www.youtube.com/watch?v=jfKfPfyJRdk --no-video"

View File

@ -48,6 +48,9 @@ export GTK_THEME="earth"
# elinks
export ELINKS_CONFDIR="$HOME/.config/elinks"
# dbus configuration
export DBUS_SESSION_BUS_ADDRESS="unix:path=$XDG_RUNTIME_DIR/bus"
# source the bashrc(s)
[ -f $HOME/.config/bash/bashrc ] && . $HOME/.config/bash/bashrc
[ -f $HOME/.bashrc ] && . $HOME/.bashrc

View File

@ -121,7 +121,9 @@ function setTabbing(lang, width)
end
setTabbing("python", 4)
setTabbing("javascript", 2)
setTabbing("javascript", 4)
setTabbing("css", 4)
setTabbing("html", 4)
vim.api.nvim_create_autocmd({"TermOpen"}, {
pattern = {"*"},