Initial commit

* My dotfiles using GNU Stow
This commit is contained in:
Peter Cai 2021-02-01 08:05:50 +08:00
commit 314b175ef9
4 changed files with 32 additions and 0 deletions

View File

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

3
bash/.bash_logout Normal file
View File

@ -0,0 +1,3 @@
#
# ~/.bash_logout
#

5
bash/.bash_profile Normal file
View File

@ -0,0 +1,5 @@
#
# ~/.bash_profile
#
[[ -f ~/.bashrc ]] && . ~/.bashrc

9
bash/.bashrc Normal file
View File

@ -0,0 +1,9 @@
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
alias ls='ls --color=auto'
PS1='[\u@\h \W]\$ '