mirror of
https://gitlab.com/sagidayan/linux-config.git
synced 2024-11-14 03:35:26 +00:00
40 lines
798 B
Bash
40 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
|
|
############################################
|
|
|
|
|