summaryrefslogtreecommitdiff
path: root/.config
diff options
context:
space:
mode:
Diffstat (limited to '.config')
-rw-r--r--.config/alacritty/alacritty.yml85
-rw-r--r--.config/neofetch/config.conf6
-rw-r--r--.config/nvim/init.vim7
3 files changed, 64 insertions, 34 deletions
diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml
index ec0406f..e1c962f 100644
--- a/.config/alacritty/alacritty.yml
+++ b/.config/alacritty/alacritty.yml
@@ -56,35 +56,62 @@ font:
draw_bold_text_with_bright_colors: true
-# Solarized dark
-colors:
- primary:
- background: '0x002b36' # base03
- foreground: '0x839496' # base0
-
- cursor:
- text: '0x002b36' # base03
- cursor: '0x839496' # base0
-
- normal:
- black: '0x073642' # base02
- red: '0xdc322f' # red
- green: '0x859900' # green
- yellow: '0xb58900' # yellow
- blue: '0x268bd2' # blue
- magenta: '0xd33682' # magenta
- cyan: '0x2aa198' # cyan
- white: '0xeee8d5' # base2
-
- bright:
- black: '0x002b36' # base03
- red: '0xcb4b16' # orange
- green: '0x586e75' # base01
- yellow: '0x657b83' # base00
- blue: '0x839496' # base0
- magenta: '0x6c71c4' # violet
- cyan: '0x93a1a1' # base1
- white: '0xfdf6e3' # base3
+schemes:
+ solarized_dark: &solarized_dark
+ primary:
+ background: '0x002b36' # base03
+ foreground: '0x839496' # base0
+
+ cursor:
+ text: '0x002b36' # base03
+ cursor: '0x839496' # base0
+
+ normal:
+ black: '0x073642' # base02
+ red: '0xdc322f' # red
+ green: '0x859900' # green
+ yellow: '0xb58900' # yellow
+ blue: '0x268bd2' # blue
+ magenta: '0xd33682' # magenta
+ cyan: '0x2aa198' # cyan
+ white: '0xeee8d5' # base2
+
+ bright:
+ black: '0x002b36' # base03
+ red: '0xcb4b16' # orange
+ green: '0x586e75' # base01
+ yellow: '0x657b83' # base00
+ blue: '0x839496' # base0
+ magenta: '0x6c71c4' # violet
+ cyan: '0x93a1a1' # base1
+ white: '0xfdf6e3' # base3
+
+ dracula: &dracula
+ primary:
+ background: '#282a36'
+ foreground: '#f8f8f2'
+
+ normal:
+ black: '#000000'
+ red: '#ff5555'
+ green: '#50fa7b'
+ yellow: '#f1fa8c'
+ blue: '#caa9fa'
+ magenta: '#ff79c6'
+ cyan: '#8be9fd'
+ white: '#bfbfbf'
+
+ bright:
+ black: '#575b70'
+ red: '#ff6e67'
+ green: '#5af78e'
+ yellow: '#f4f99d'
+ blue: '#caa9fa'
+ magenta: '#ff92d0'
+ cyan: '#9aedfe'
+ white: '#e6e6e6'
+
+colors: *dracula
visual_bell:
animation: EaseOutExpo
diff --git a/.config/neofetch/config.conf b/.config/neofetch/config.conf
index 5e3dc9f..6930fa3 100644
--- a/.config/neofetch/config.conf
+++ b/.config/neofetch/config.conf
@@ -101,7 +101,8 @@ mpc_args=()
## Text Colors
# Each number represents a different part of the text in
# this order: 'title', '@', 'underline', 'subtitle', 'colon', 'info'
-colors=(4 6 1 32 2 6)
+# colors=(4 6 1 32 2 6)
+colors=(distro)
## Text Options
bold="on"
@@ -135,7 +136,8 @@ image_backend="ascii"
# 'command output (neofetch --ascii "$(fortune | cowsay -W 30)")'
image_source="auto"
ascii_distro="auto"
-ascii_colors=(33 33 64 64 37 37)
+# ascii_colors=(33 33 64 64 37 37)
+ascii_colors=(distro)
ascii_bold="on"
## Image Options
diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim
index 8ce4f18..b24377a 100644
--- a/.config/nvim/init.vim
+++ b/.config/nvim/init.vim
@@ -16,8 +16,9 @@ set showcmd
""---Loads plugins---""
call plug#begin('~/.config/nvim/plugged')
- " Colorscheme
+ " Color schemes
Plug 'altercation/vim-colors-solarized'
+ Plug 'dracula/vim'
" Other
Plug 'mboughaba/i3config.vim'
@@ -30,7 +31,7 @@ set showcmd
Plug 'vim-airline/vim-airline'
let g:airline_powerline_fonts=1
Plug 'vim-airline/vim-airline-themes'
- let g:airline_theme='solarized'
+ let g:airline_theme='dracula'
" Git
Plug 'Xuyuanp/nerdtree-git-plugin'
@@ -78,7 +79,7 @@ set showcmd
""---Basic configuration---""
syntax enable
set background=dark
- colorscheme solarized
+ colorscheme dracula
" Just so alacritty can use transparency.
hi Normal ctermbg=NONE
set encoding=utf-8