diff --git a/.vimrc b/.vimrc index 8c8ae69..37c4e89 100644 --- a/.vimrc +++ b/.vimrc @@ -12,7 +12,7 @@ call plug#begin('~/.vim/plugged') Plug 'vim-airline/vim-airline-themes' " Git wrapper - Plug 'tpope/vim-fugitive' + " Plug 'tpope/vim-fugitive' " automatically close pairs of quotes, parenths, whatever Plug 'jiangmiao/auto-pairs' diff --git a/.zshrc b/.zshrc index 49ba59a..903c1f9 100644 --- a/.zshrc +++ b/.zshrc @@ -159,3 +159,16 @@ alias xterm="xterm -e 'newsboat' &" # reload ~/.Xresources config for xterm alias xterm_reload_conf="xrdb -merge ~/.Xresources" + +# move to humi server project, and open vim to the readme +alias humiserver="cd /home/alexcarr/Development/go/src/repo.carr.codes/humi/server && vim README.md" + +# -2 forces tmux to assume the terminal supports 256 colors. Required to use the vim themes you've spent hours searching for. +alias tmux="tmux -2" + +# set alacritty-colorsheme themes to toggle +ALACRITTY_CYBER_THEME="cyber_punk_neon_1.yaml" +ALACRITTY_SEASHELL_THEME="seashells_1.yaml" +alias toggle="alacritty-colorscheme -V toggle $ALACRITTY_CYBER_THEME $ALACRITTY_SEASHELL_THEME" + + diff --git a/README.md b/README.md index 65d3627..bc7c55b 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,9 @@ # dotfiles +## Demos +Demos will go here + + + ## Notes - `i3config` should be renamed to `config` upon cloning, and should be placed in `~/.config/i3/`. diff --git a/alacritty.yml b/alacritty.yml index a495d5c..604398a 100644 --- a/alacritty.yml +++ b/alacritty.yml @@ -1,5 +1,12 @@ live_config_reload: true +shell: + program: /bin/zsh + args: + - -l + - -c + - tmux -2 attach || tmux -2 + font: normal: family: Source Code Pro @@ -12,33 +19,41 @@ font: y: 2 colors: - # COLORSCHEME: hyper.yaml + # COLORSCHEME: seashells_1.yaml # Default colors + name: Count Von Count + author: Baskerville primary: - background: '0x000000' - foreground: '0xffffff' + background: '#061923' + foreground: '#e5c49e' + + # Colors the cursor will use if `custom_cursor_colors` is true + cursor: + text: '#061822' + cursor: '#feaf3c' + normal: - black: '0x000000' - red: '0xfe0100' - green: '0x33ff00' - yellow: '0xfeff00' - blue: '0x0066ff' - magenta: '0xcc00ff' - cyan: '0x00ffff' - white: '0xd0d0d0' + black: '#1d485f' + red: '#db662d' + green: '#008eab' + yellow: '#feaf3c' + blue: '#255a62' + magenta: '#77dbf4' + cyan: '#5fb1c2' + white: '#e5c49e' # Bright colors bright: - black: '0x808080' - red: '0xfe0100' - green: '0x33ff00' - yellow: '0xfeff00' - blue: '0x0066ff' - magenta: '0xcc00ff' - cyan: '0x00ffff' - white: '0xFFFFFF' - cursor: - text: '0xF81CE5' - cursor: '0xffffff' + black: '#545d65' + red: '#dd998a' + green: '#739da8' + yellow: '#fedaae' + blue: '#0bc7e3' + magenta: '#c6e8f1' + cyan: '#97b9c0' + white: '#ffe9d7' + selection: + text: '#ffe9d7' + background: '#265b75' # Normal colors diff --git a/resources/shitty-vim-demo.gif b/resources/shitty-vim-demo.gif new file mode 100644 index 0000000..3199688 Binary files /dev/null and b/resources/shitty-vim-demo.gif differ