From 314b175ef93b99f3c84993dd10ff5b10d37160ab Mon Sep 17 00:00:00 2001 From: Peter Cai Date: Mon, 1 Feb 2021 08:05:50 +0800 Subject: [PATCH] Initial commit * My dotfiles using GNU Stow --- alacritty/.config/alacritty/alacritty.yml | 15 +++++++++++++++ bash/.bash_logout | 3 +++ bash/.bash_profile | 5 +++++ bash/.bashrc | 9 +++++++++ 4 files changed, 32 insertions(+) create mode 100644 alacritty/.config/alacritty/alacritty.yml create mode 100644 bash/.bash_logout create mode 100644 bash/.bash_profile create mode 100644 bash/.bashrc diff --git a/alacritty/.config/alacritty/alacritty.yml b/alacritty/.config/alacritty/alacritty.yml new file mode 100644 index 0000000..158e3af --- /dev/null +++ b/alacritty/.config/alacritty/alacritty.yml @@ -0,0 +1,15 @@ +window: + dimensions: + columns: 90 + lines: 32 + +font: + normal: + family: 'Fira Code' + bold: + family: 'Fira Code' + italic: + family: 'Fira Code' + bold_italic: + family: 'Fira Code' + size: 10.5 diff --git a/bash/.bash_logout b/bash/.bash_logout new file mode 100644 index 0000000..0e4e4f1 --- /dev/null +++ b/bash/.bash_logout @@ -0,0 +1,3 @@ +# +# ~/.bash_logout +# diff --git a/bash/.bash_profile b/bash/.bash_profile new file mode 100644 index 0000000..5545f00 --- /dev/null +++ b/bash/.bash_profile @@ -0,0 +1,5 @@ +# +# ~/.bash_profile +# + +[[ -f ~/.bashrc ]] && . ~/.bashrc diff --git a/bash/.bashrc b/bash/.bashrc new file mode 100644 index 0000000..a355b0c --- /dev/null +++ b/bash/.bashrc @@ -0,0 +1,9 @@ +# +# ~/.bashrc +# + +# If not running interactively, don't do anything +[[ $- != *i* ]] && return + +alias ls='ls --color=auto' +PS1='[\u@\h \W]\$ '