mirror of
https://gitlab.com/sagidayan/linux-config.git
synced 2024-11-14 11:45:25 +00:00
41 lines
798 B
Bash
41 lines
798 B
Bash
|
#!/bin/bash
|
||
|
########################################################
|
||
|
# DO NOT EDIT - WILL BE DISCARDED IN NEXT PLAYBOOK RUN #
|
||
|
########################################################
|
||
|
|
||
|
|
||
|
############################################
|
||
|
# Shell aliases
|
||
|
############################################
|
||
|
alias spot=ncspot
|
||
|
alias :q=exit
|
||
|
|
||
|
alias ls='lsd'
|
||
|
alias f='printf "\033c"'
|
||
|
alias cat=bat
|
||
|
|
||
|
|
||
|
|
||
|
############################################
|
||
|
# Environment Variables
|
||
|
############################################
|
||
|
|
||
|
# bat theme (New cat) $ bat --list-themes
|
||
|
gruvbox="gruvbox"
|
||
|
monokai="Monokai Extended"
|
||
|
nord="Nord"
|
||
|
|
||
|
export BAT_THEME="$nord"
|
||
|
|
||
|
|
||
|
export VISUAL=vim;
|
||
|
export EDITOR=vim;
|
||
|
|
||
|
|
||
|
|
||
|
############################################
|
||
|
# Shell functions
|
||
|
############################################
|
||
|
|
||
|
|