aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorla-ninpre <leobrekalini@gmail.com>2021-05-12 21:50:41 +0300
committerla-ninpre <leobrekalini@gmail.com>2021-05-12 21:50:41 +0300
commit265f13c89fa12e81aed02e81e4ad4830b7b2c656 (patch)
tree36c2bbc6522f8acece76e77ecdb2162c2482c336
parentda644bd6d8abf3679d8d36b8fab0c34fd32e0b73 (diff)
downloaddotfiles-265f13c89fa12e81aed02e81e4ad4830b7b2c656.tar.gz
dotfiles-265f13c89fa12e81aed02e81e4ad4830b7b2c656.zip
alacritty: add custom color theme
nvim: add custom color theme
-rw-r--r--.config/alacritty/alacritty.yml85
-rw-r--r--.config/nvim/init.vim2
2 files changed, 59 insertions, 28 deletions
diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml
index 1ff54d3..aaa2eee 100644
--- a/.config/alacritty/alacritty.yml
+++ b/.config/alacritty/alacritty.yml
@@ -42,9 +42,9 @@ window:
#
# Blank space added around the window in pixels. This padding is scaled
# by DPI and the specified value is always added at both opposing sides.
- #padding:
- # x: 0
- # y: 0
+ padding:
+ x: 7
+ y: 7
# Spread additional padding evenly around the terminal content.
#dynamic_padding: false
@@ -108,7 +108,7 @@ font:
# - (macOS) Menlo
# - (Linux/BSD) monospace
# - (Windows) Consolas
- family: JetBrainsMono
+ family: JetBrains Mono
# The `style` can be specified to pick a specific face.
style: Regular
@@ -169,34 +169,65 @@ font:
#use_thin_strokes: true
# If `true`, bold text is drawn using the bright color variants.
-#draw_bold_text_with_bright_colors: false
+# draw_bold_text_with_bright_colors: false
+
+# manual-rbow
colors:
- # Default colors
+ # Default colors
primary:
- background: '0x1d1f21'
- foreground: '0xc5c8c6'
+ background: '#19191a'
+ foreground: '#cadcde'
- # Normal colors
+ # Normal colors
normal:
- black: '0x282a2e'
- red: '0xa54242'
- green: '0x8c9440'
- yellow: '0xde935f'
- blue: '0x5f819d'
- magenta: '0x85678f'
- cyan: '0x5e8d87'
- white: '0x707880'
-
- # Bright colors
+ black: '#393838'
+ red: '#c74444'
+ green: '#7f9848'
+ yellow: '#d7a06d'
+ blue: '#4e96d5'
+ magenta: '#bc5fa7'
+ cyan: '#55b795'
+ white: '#c3b2f7'
+
+ # Bright colors
bright:
- black: '0x373b41'
- red: '0xcc6666'
- green: '0xb5bd68'
- yellow: '0xf0c674'
- blue: '0x81a2be'
- magenta: '0xb294bb'
- cyan: '0x8abeb7'
- white: '0xc5c8c6'
+ black: '#5a514b'
+ red: '#ed7c68'
+ green: '#c7ea76'
+ yellow: '#ffdb9d'
+ blue: '#a6d5fe'
+ magenta: '#edbbe9'
+ cyan: '#7fe2c5'
+ white: '#e2d6ff'
+
+# old-theme (hybrid by w0ng)
+# colors:
+# # Default colors
+# primary:
+# background: '0x1d1f21'
+# foreground: '0xc5c8c6'
+#
+# # Normal colors
+# normal:
+# black: '#282a2e'
+# red: '#a54242'
+# green: '#8c9440'
+# yellow: '#de935f'
+# blue: '#5f819d'
+# magenta: '#85678f'
+# cyan: '#5e8d87'
+# white: '#707880'
+#
+# # Bright colors
+# bright:
+# black: '#373b41'
+# red: '#cc6666'
+# green: '#b5bd68'
+# yellow: '#f0c674'
+# blue: '#81a2be'
+# magenta: '#b294bb'
+# cyan: '#8abeb7'
+# white: '#c5c8c6'
# Colors (Tomorrow Night)
#colors:
diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim
index 0c3561a..6422c85 100644
--- a/.config/nvim/init.vim
+++ b/.config/nvim/init.vim
@@ -58,7 +58,7 @@ set listchars=tab:>-,eol:$,space:•,trail:~
" vim plug plugins
call plug#begin('~/.local/share/nvim/plugged')
-Plug 'morhetz/gruvbox'
+Plug '~/.local/share/nvim/plugged/gruvbox', {'branch': 'la-ninpre/la-ninpre'}
Plug 'junegunn/goyo.vim'
Plug 'junegunn/limelight.vim'
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }