summaryrefslogtreecommitdiff
path: root/.bashrc-local
diff options
context:
space:
mode:
authorSebastiano Tronto <sebastiano@tronto.net>2026-05-08 23:55:30 +0200
committerSebastiano Tronto <sebastiano@tronto.net>2026-05-08 23:55:30 +0200
commitc4d0e3de7ad04114797abb14368e4a6f8da04a60 (patch)
tree5ef72a5dfb5f6b1b15c1c3ac3e2e876bb9398ed2 /.bashrc-local
parent453436ee53cd9935473cf1944dd072281d69a99f (diff)
downloadconfig-c4d0e3de7ad04114797abb14368e4a6f8da04a60.tar.gz
config-c4d0e3de7ad04114797abb14368e4a6f8da04a60.zip
Updates from alpine
Diffstat (limited to '.bashrc-local')
-rw-r--r--.bashrc-local65
1 files changed, 0 insertions, 65 deletions
diff --git a/.bashrc-local b/.bashrc-local
deleted file mode 100644
index b9d9858..0000000
--- a/.bashrc-local
+++ /dev/null
@@ -1,65 +0,0 @@
1set -o vi
2
3PS1="[\h \W] \$ "
4
5export HISTCONTROL=ignoredups
6export HISTFILE=$HOME/.sh_history
7export HISTSIZE=10000
8
9# Standard stuff and variables for my scripts
10export EDITOR=vi
11export VISUAL=vi
12export TERMINAL="ptyxis --new-window"
13export XEDIT="gnome-text-editor"
14export NOTIFY=notify-send
15export OPENER=xdg-open #or set to open-file from scripts
16export BROWSER=firefox
17export XDG_CONFIG_HOME="$HOME/.config"
18export XDG_DATA_HOME="$HOME/.local/share"
19export XDG_CACHE_HOME="$HOME/.cache"
20export PYTHON_COLORS=0
21
22# Locale overrides
23export LC_COLLATE="C"
24
25### Program-specific
26export FZF_DEFAULT_OPTS="-e -i -m --no-bold --no-color --layout=reverse-list"
27export LYNX_CFG="$XDG_CONFIG_HOME/lynx/lynx.cfg"
28export LYNX_LSS="$XDG_CONFIG_HOME/lynx/lynx.lss"
29
30### Aliases and functions
31alias bc='bc -q /home/sebastiano/box/bc.library'
32alias o='xdg-open'
33alias rm='trash-put'
34alias ls='ls --color=auto'
35alias clip='clip -m fzf'
36alias bm='dmenu-bookmarks -m fzf'
37alias f='feed get && feed -m fzf menu'
38alias svi='vi "+so $HOME/.virc-spaces"'
39
40# Email management (mblaze)
41MAIL=$HOME/mail
42msync() { mbsync -a; }
43msc() { d=${1:-$MAIL/INBOX}; minc -q $d; mlist -t $d | mthread | mseq -S; mscan; }
44mget() { mbsync -a; msc; }
45mtt() { echo $MAIL/Trash | xargs mrefile $@; }
46mta() { echo $MAIL/Archive | xargs mrefile $@; }
47mpk() { f=$1; shift; mpick -t "$f =~~ \"$@\""; }
48s() { mshow $@ | templess; }
49sht() { mshow -A text/html $@; }
50n() { mshow .+1 | templess; }
51
52# Comment out the next line when not working regularly with emscripten
53#EMSDK_QUIET=1 source "$HOME/dev/emsdk/emsdk_env.sh"
54
55# nissy build options
56export NISSY_BUILD_SANITIZE="address,undefined"
57
58# Rust things
59export RUSTUP_HOME="$HOME/dev/rustup"
60export CARGO_HOME="$HOME/dev/cargo"
61export PATH="$CARGO_HOME/bin:$PATH"
62startrust() { source "$CARGO_HOME/env"; }
63
64# Session cookies are kept in .ssh
65. $HOME/.ssh/sessions

Generated with cgit - Back to sebastiano.tronto.net