Skip to content

Commit

Permalink
updated dotfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
heyjoakim committed Feb 4, 2022
1 parent 9bb9d5d commit 2fbdd17
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 55 deletions.
47 changes: 12 additions & 35 deletions .alacritty.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,45 +11,22 @@ font:
family: monospace

# Point size
size: 16
size: 13
use_thin_strokes: true

# If `true`, bold text is drawn using the bright color variants.
draw_bold_text_with_bright_colors: false

# Colors (Tomorrow Night Bright)
colors:
# Default colors
primary:
# background: '0x000000'
# foreground: '0xd0d0d0'
foreground: '0xd0d0d0'
# Normal colors
normal:
black: '0x333333'
red: '0xf03669'
green: '0xb8e346'
yellow: '0xffa402'
blue: '0x365eff'
magenta: '0x875c8d'
cyan: '0x6fa9d3'
white: '0xDBDBDB'

# Bright colors
bright:
black: '0x3d3d3d'
red: '0xc75b79'
green: '0xc8e37e'
yellow: '0xffbe4a'
blue: '0x365eff'
magenta: '0xe41f66'
cyan: '0x0078CE'
white: '0xC0C0C0'

# Cursor style
# Cursor style
cursor:
# Values for `style`:
# - ▇ Block
# - _ Underline
# - | Beam
style: Block

# Window position on startup
window:
dimensions:
columns: 85
lines: 50

padding:
x: 15
y: 10
21 changes: 1 addition & 20 deletions .bashrc
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ fi
if ! shopt -oq posix; then
if [ -f /usr/share/bash-completion/bash_completion ]; then
. /usr/share/bash-completion/bash_completion
elif [ -f /etc/bash_completion ]; then
elif [ -f /etc/bash_completion]; then
. /etc/bash_completion
fi
fi
Expand All @@ -130,25 +130,6 @@ fi
complete -cf sudo

export EDITOR=vim

# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.

if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi

# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
if ! shopt -oq posix; then
if [ -f /usr/share/bash-completion/bash_completion ]; then
. /usr/share/bash-completion/bash_completion
elif [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
fi
export PATH=$PATH:/home/$USER/bin/

export GIT_PS1_SHOWDIRTYSTATE=1
Expand Down

0 comments on commit 2fbdd17

Please sign in to comment.