From 4a12f7263131df92ba6b9993f9768e90b1652305 Mon Sep 17 00:00:00 2001 From: David Luevano <55825613+luevano@users.noreply.github.com> Date: Wed, 19 Feb 2020 00:12:48 -0700 Subject: Fix solarized colorscheme --- .config/alacritty/alacritty.yml | 3 +++ .config/neofetch/config.conf | 4 ++-- .config/nvim/init.vim | 9 +++++++-- 3 files changed, 12 insertions(+), 4 deletions(-) (limited to '.config') diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml index 747268b..9492ada 100644 --- a/.config/alacritty/alacritty.yml +++ b/.config/alacritty/alacritty.yml @@ -60,9 +60,11 @@ colors: primary: background: '0x002b36' # base03 foreground: '0x839496' # base0 + cursor: text: '0x002b36' # base03 cursor: '0x839496' # base0 + normal: black: '0x073642' # base02 red: '0xdc322f' # red @@ -72,6 +74,7 @@ colors: magenta: '0xd33682' # magenta cyan: '0x2aa198' # cyan white: '0xeee8d5' # base2 + bright: black: '0x002b36' # base03 red: '0xcb4b16' # orange diff --git a/.config/neofetch/config.conf b/.config/neofetch/config.conf index 3290777..5e3dc9f 100644 --- a/.config/neofetch/config.conf +++ b/.config/neofetch/config.conf @@ -101,7 +101,7 @@ mpc_args=() ## Text Colors # Each number represents a different part of the text in # this order: 'title', '@', 'underline', 'subtitle', 'colon', 'info' -colors=(distro) +colors=(4 6 1 32 2 6) ## Text Options bold="on" @@ -135,7 +135,7 @@ image_backend="ascii" # 'command output (neofetch --ascii "$(fortune | cowsay -W 30)")' image_source="auto" ascii_distro="auto" -ascii_colors=(distro) +ascii_colors=(33 33 64 64 37 37) ascii_bold="on" ## Image Options diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index 12e6e68..615c550 100644 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -14,6 +14,9 @@ ""---Loads plugins---"" call plug#begin('~/.config/nvim/plugged') + " Colorscheme + Plug 'altercation/vim-colors-solarized' + " Other Plug 'mboughaba/i3config.vim' Plug 'junegunn/goyo.vim' " Plug 'preservim/nerdtree' @@ -48,9 +51,11 @@ set showcmd " Basic + syntax enable + set background=dark + colorscheme solarized + hi Normal ctermbg=NONE " Just so alacritty can use transparency. set encoding=utf-8 - " set bg=dark - syntax on set number relativenumber set clipboard+=unnamedplus -- cgit v1.2.3-54-g00ecf