linux-config/files/dotfiles/shellconfig/common.sh
2021-10-29 16:51:16 +03:00

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
############################################