diff options
author | InigoGutierrez <inigogf.95@gmail.com> | 2022-08-25 17:17:30 +0200 |
---|---|---|
committer | InigoGutierrez <inigogf.95@gmail.com> | 2022-08-25 17:17:30 +0200 |
commit | ccbd2fd21eaac1a53dc3a5de5d794634c00cfdb9 (patch) | |
tree | 07f2056694075003e834f8e6ec03c01be9730ca1 /stow | |
parent | c3362abc1cedbb7667822344249016b9b17c31e8 (diff) | |
download | configs-ccbd2fd21eaac1a53dc3a5de5d794634c00cfdb9.tar.gz configs-ccbd2fd21eaac1a53dc3a5de5d794634c00cfdb9.zip |
New colorscheme and bash aliases for git.
Diffstat (limited to 'stow')
-rw-r--r-- | stow/rcs/.Xresources | 5 | ||||
-rw-r--r-- | stow/rcs/.bash_aliases | 9 | ||||
-rw-r--r-- | stow/rcs/.bash_vars | 2 |
3 files changed, 12 insertions, 4 deletions
diff --git a/stow/rcs/.Xresources b/stow/rcs/.Xresources index ac3c6e8..8f9ad7f 100644 --- a/stow/rcs/.Xresources +++ b/stow/rcs/.Xresources @@ -1,9 +1,8 @@ ! To load into RESOURCE_MANAGER, run xrdb ~/.Xresources -! *background and foreground are read by sxiv +! *background and foreground are read by sxiv at compile time -!#include "/home/taamas/.config/colorschemes/customBlue" -#include "/home/taamas/.config/colorschemes/nord" +#include "/home/taamas/.config/colorschemes/tokyoNight/tokyoNight" ! Man pages URxvt.colorIT: #ff0000 diff --git a/stow/rcs/.bash_aliases b/stow/rcs/.bash_aliases index dd69415..a4907f7 100644 --- a/stow/rcs/.bash_aliases +++ b/stow/rcs/.bash_aliases @@ -16,6 +16,15 @@ alias zn='cd ~/docs/zettelkasten && vim "$(./nuevo.sh)"' alias youtube-dl='yt-dlp' alias cal='cal -m' +# git +alias gs='git status' +alias gd='git diff' +alias ga='git add' +alias gc='git commit' +alias gp='git push' +alias gl='git log --oneline -n 10' +alias glg='git log --oneline --graph' + # config files alias cb="vim ~/.bashrc" alias cba="vim ~/.bash_aliases" diff --git a/stow/rcs/.bash_vars b/stow/rcs/.bash_vars index 37f0e4b..a73a118 100644 --- a/stow/rcs/.bash_vars +++ b/stow/rcs/.bash_vars @@ -19,7 +19,7 @@ export PLANTUML="$HOME/programs/plantUML/plantuml.jar" export LEDGER_FILE="$HOME/docs/ledger.dat" export REMOTE_LEDGER_FILE="taamas@taamas.xyz:data/ledger.dat" -export CONFIG_VOL_CHANGE="2" +export CONFIG_VOL_CHANGE="1" export CONFIG_BIG_VOL_CHANGE="10" export CONFIG_BRIGHT_CHANGE="4" |