Add bat configuration
Signed-off-by: Severin Kaderli <severin.kaderli@gmail.com>
This commit is contained in:
parent
089f2017c8
commit
f0f2da57bb
5 changed files with 11 additions and 2 deletions
|
@ -21,7 +21,11 @@ contains all configurations files, directories and scripts that mostly get symli
|
||||||
by my install script.
|
by my install script.
|
||||||
|
|
||||||
### `.config/autokey`
|
### `.config/autokey`
|
||||||
This folder contains my phrases and scripts for [AutoKey](https://github.com/autokey/autokey).
|
This folder contains my phrases and scripts for
|
||||||
|
[AutoKey](https://github.com/autokey/autokey).
|
||||||
|
|
||||||
|
### `.config/bat`
|
||||||
|
This folder contains my configuration for [bat](https://github.com/sharkdp/bat) a replacement for cat.
|
||||||
|
|
||||||
### `.config/compton`
|
### `.config/compton`
|
||||||
This folder contains my [compton](https://github.com/yshui/compton/releases) configuration.
|
This folder contains my [compton](https://github.com/yshui/compton/releases) configuration.
|
||||||
|
|
|
@ -35,6 +35,7 @@ LINKED_FILES_HOME=(
|
||||||
".bash_profile"
|
".bash_profile"
|
||||||
".bashrc"
|
".bashrc"
|
||||||
".config/autokey"
|
".config/autokey"
|
||||||
|
".config/bat"
|
||||||
".config/compton"
|
".config/compton"
|
||||||
".config/cron"
|
".config/cron"
|
||||||
".config/dconf"
|
".config/dconf"
|
||||||
|
|
|
@ -21,6 +21,9 @@ alias ls="exa -l"
|
||||||
# Alias for using ripgrep as grep replacement
|
# Alias for using ripgrep as grep replacement
|
||||||
alias grep="rg -n"
|
alias grep="rg -n"
|
||||||
|
|
||||||
|
# Alias for using bat as cat replacement
|
||||||
|
alias cat="bat"
|
||||||
|
|
||||||
# Alias to get to my Projects folder
|
# Alias to get to my Projects folder
|
||||||
alias pj="cd ~/Projects"
|
alias pj="cd ~/Projects"
|
||||||
|
|
||||||
|
|
1
system/.config/bat/config
Normal file
1
system/.config/bat/config
Normal file
|
@ -0,0 +1 @@
|
||||||
|
--plain
|
Loading…
Add table
Add a link
Reference in a new issue