diff options
-rw-r--r-- | .bash_profile | 4 | ||||
-rwxr-xr-x | .local/bin/qmmi | 5 |
2 files changed, 7 insertions, 2 deletions
diff --git a/.bash_profile b/.bash_profile index 21a3fb5d..1b47b3ee 100644 --- a/.bash_profile +++ b/.bash_profile @@ -9,8 +9,8 @@ export XDG_CACHE_HOME="$HOME/.cache" export XDG_DATA_HOME="$HOME/.local/share" export PATH="$(find ~/.local/bin -type d -printf %p:)$PATH" -export HISTSIZE=3000 -export HISTFILESIZE=3000 +export HISTSIZE=4000 +export HISTFILESIZE=4000 export MANPAGER="nvim +Man!" export EDITOR=nvim diff --git a/.local/bin/qmmi b/.local/bin/qmmi new file mode 100755 index 00000000..9427ea24 --- /dev/null +++ b/.local/bin/qmmi @@ -0,0 +1,5 @@ +#/bin/sh + +qmake +make -B +sudo make install |