alacritty: add custom color theme nvim: add custom color theme
la-ninpre leobrekalini@gmail.com
Wed, 12 May 2021 21:50:41 +0300
2 files changed,
58 insertions(+),
27 deletions(-)
M
.config/alacritty/alacritty.yml
→
.config/alacritty/alacritty.yml
@@ -42,9 +42,9 @@ # Window padding (changes require restart)
# # 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 @@ # Default:
# - (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 @@ # it is recommended to set `use_thin_strokes` to `false`.
#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' + black: '#393838' + red: '#c74444' + green: '#7f9848' + yellow: '#d7a06d' + blue: '#4e96d5' + magenta: '#bc5fa7' + cyan: '#55b795' + white: '#c3b2f7' - # Bright colors + # 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:
M
.config/nvim/init.vim
→
.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() } }