Vim & theme changes

lightmode
E. Almqvist 2 years ago
parent f8a4c1b1fe
commit 7d48747160
  1. 45
      alacritty/.config/alacritty/alacritty.yml
  2. 42
      nvim/.config/nvim/init.vim
  3. 2
      polybar/.config/polybar/config

@ -2,7 +2,7 @@
env: env:
TERM: xterm-256color TERM: xterm-256color
background_opacity: 0.95 background_opacity: 1.0
window: window:
padding: padding:
@ -28,7 +28,7 @@ font:
# Normal (roman) font face # Normal (roman) font face
normal: normal:
family: Consolas ligaturized v2 family: Fira Code
# The `style` can be specified to pick a specific face. # The `style` can be specified to pick a specific face.
style: Normal style: Normal
@ -36,7 +36,7 @@ font:
# Bold font face # Bold font face
bold: bold:
family: Consolas ligaturized v2 family: Fira Code
# The `style` can be specified to pick a specific face. # The `style` can be specified to pick a specific face.
style: Bold style: Bold
@ -49,7 +49,7 @@ font:
# Bold italic font face # Bold italic font face
bold_italic: bold_italic:
family: Consolas ligaturized v2 family: Fira Code
# The `style` can be specified to pick a specific face. # The `style` can be specified to pick a specific face.
style: Bold Italic style: Bold Italic
@ -67,32 +67,29 @@ font:
draw_bold_text_with_bright_colors: true draw_bold_text_with_bright_colors: true
colors: colors:
# Default colors
primary: primary:
background: '0x222222' background: '0x181818'
foreground: '0xebdbb2' foreground: '0xdfbf8e'
# Normal colors
normal: normal:
black: '0x282828' black: '0x665c54'
red: '0xcc241d' red: '0xea6962'
green: '0x98971a' green: '0xa9b665'
yellow: '0xd79921' yellow: '0xe78a4e'
blue: '0x458588' blue: '0x7daea3'
magenta: '0xb16286' magenta: '0xd3869b'
cyan: '0x689d6a' cyan: '0x89b482'
white: '0xa89984' white: '0xdfbf8e'
# Bright colors
bright: bright:
black: '0x928374' black: '0x928374'
red: '0xfb4934' red: '0xea6962'
green: '0xb8bb26' green: '0xa9b665'
yellow: '0xfabd2f' yellow: '0xe3a84e'
blue: '0x83a598' blue: '0x7daea3'
magenta: '0xd3869b' magenta: '0xd3869b'
cyan: '0x8ec07c' cyan: '0x89b482'
white: '0xebdbb2' white: '0xdfbf8e'
cursor: cursor:
# Values for `style`: # Values for `style`:

@ -1,22 +1,9 @@
" NEO- " _ _ __ ___
" ##############..... ############## " | \ | | ___ __\ \ / (_)_ __ ___
" ##############......############## " | \| |/ _ \/ _ \ \ / /| | '_ ` _ \
" ##########..........########## " | |\ | __/ (_) \ V / | | | | | | |
" ##########........########## " |_| \_|\___|\___/ \_/ |_|_| |_| |_|
" ##########.......##########
" ##########.....##########..
" ##########....##########.....
" ..##########..##########.........
" ....##########.#########.............
" ..################JJJ............
" ################.............
" ##############.JJJ.JJJJJJJJJJ
" ############...JJ...JJ..JJ JJ
" ##########....JJ...JJ..JJ JJ
" ########......JJJ..JJJ JJJ JJJ
" ###### .........
" .....
" .
call plug#begin('~/.config/nvim/plugged') call plug#begin('~/.config/nvim/plugged')
" Misc " Misc
@ -38,6 +25,7 @@ call plug#begin('~/.config/nvim/plugged')
Plug 'OmniSharp/omnisharp-vim' Plug 'OmniSharp/omnisharp-vim'
" Themes " Themes
Plug 'ellisonleao/gruvbox.nvim' Plug 'ellisonleao/gruvbox.nvim'
Plug 'sainnhe/gruvbox-material'
Plug 'projekt0n/github-nvim-theme' Plug 'projekt0n/github-nvim-theme'
" Lua Line " Lua Line
Plug 'nvim-lualine/lualine.nvim' Plug 'nvim-lualine/lualine.nvim'
@ -47,7 +35,12 @@ call plug#end()
set nocompatible set nocompatible
set showmatch set showmatch
set ignorecase set ignorecase
" Mouse
set mouse=a set mouse=a
" map <ScrollWheelUp> <C-Y>
" map <ScrollWheelDown> <C-E>
set hlsearch set hlsearch
set autoindent set autoindent
filetype plugin indent on filetype plugin indent on
@ -72,14 +65,19 @@ let g:ruby_recommended_style = 0
set clipboard+=unnamedplus set clipboard+=unnamedplus
" Theme " Theme
set background=dark " set background=dark
colors gruvbox colorscheme gruvbox-material
let &showbreak = '↳ ' let &showbreak = '↳ '
set laststatus=0 ruler set laststatus=0 ruler
set rnu nu set rnu nu
hi Normal guibg=NONE ctermbg=NONE hi Normal guibg=NONE ctermbg=NONE
hi StatusLine ctermbg=NONE ctermfg=NONE hi EndOfBuffer guibg=NONE ctermbg=NONE
hi TabLine guibg=NONE ctermbg=NONE
" hi TabLineSel ctermfg=223 guibg=NONE ctermbg=NONE
hi TabLineFill guibg=NONE ctermbg=NONE
hi StatusLine ctermbg=NONE guibg=NONE
highlight clear LineNr highlight clear LineNr
highlight LineNr ctermfg=NONE ctermbg=NONE highlight LineNr ctermfg=NONE ctermbg=NONE

@ -2,7 +2,7 @@
#compositing-foreground = over #compositing-foreground = over
[colors] [colors]
background = #222222 background = #181818
foreground = #ebdbb2 foreground = #ebdbb2
foreground2 = #77ebdbb2 foreground2 = #77ebdbb2
line = #bbb line = #bbb

Loading…
Cancel
Save