Vim theme & color changes

laptop
Elias Almqvist 2 years ago
parent 6d3fcaae05
commit c96dd8b340
  1. 4
      alacritty/.config/alacritty/alacritty.yml
  2. 14
      dunst/.config/dunst/dunstrc
  3. 41
      nvim/.config/nvim/init.vim
  4. 2
      polybar/.config/polybar/config
  5. 6
      rofi/.config/rofi/doomsidebar.rasi

@ -2,7 +2,7 @@
env:
TERM: xterm-256color
background_opacity: 0.95
background_opacity: 1.0
window:
padding:
@ -69,7 +69,7 @@ draw_bold_text_with_bright_colors: true
colors:
# Default colors
primary:
background: '0x222222'
background: '0x181818'
foreground: '0xebdbb2'
# Normal colors

@ -64,7 +64,7 @@
frame_width = 1
# Defines color of the frame around the notification window.
frame_color = "#222222"
frame_color = "#181818"
# Define a color for the separator.
# possible values are:
@ -275,25 +275,25 @@
[urgency_low]
# IMPORTANT: colors have to be defined in quotation marks.
# Otherwise the "#" and following would be interpreted as a comment.
background = "#222222"
background = "#181818"
foreground = "#ebdbb2"
frame_color = "#222222"
frame_color = "#181818"
timeout = 10
# Icon for notifications with low urgency, uncomment to enable
#icon = /path/to/icon
[urgency_normal]
background = "#222222"
background = "#181818"
foreground = "#ebdbb2"
frame_color = "#222222"
frame_color = "#181818"
timeout = 10
# Icon for notifications with normal urgency, uncomment to enable
#icon = /path/to/icon
[urgency_critical]
background = "#222222"
background = "#181818"
foreground = "#ebdbb2"
frame_color = "#222222"
frame_color = "#181818"
timeout = 0
# Icon for notifications with critical urgency, uncomment to enable
#icon = /path/to/icon

@ -1,22 +1,10 @@
" NEO-
" ##############..... ##############
" ##############......##############
" ##########..........##########
" ##########........##########
" ##########.......##########
" ##########.....##########..
" ##########....##########.....
" ..##########..##########.........
" ....##########.#########.............
" ..################JJJ............
" ################.............
" ##############.JJJ.JJJJJJJJJJ
" ############...JJ...JJ..JJ JJ
" ##########....JJ...JJ..JJ JJ
" ########......JJJ..JJJ JJJ JJJ
" ###### .........
" .....
" .
" _ _ __ ___
" | \ | | ___ __\ \ / (_)_ __ ___
" | \| |/ _ \/ _ \ \ / /| | '_ ` _ \
" | |\ | __/ (_) \ V / | | | | | | |
" |_| \_|\___|\___/ \_/ |_|_| |_| |_|
call plug#begin('~/.config/nvim/plugged')
" Misc
@ -38,6 +26,7 @@ call plug#begin('~/.config/nvim/plugged')
Plug 'OmniSharp/omnisharp-vim'
" Themes
Plug 'ellisonleao/gruvbox.nvim'
Plug 'sainnhe/gruvbox-material'
Plug 'projekt0n/github-nvim-theme'
" Lua Line
Plug 'nvim-lualine/lualine.nvim'
@ -47,7 +36,12 @@ call plug#end()
set nocompatible
set showmatch
set ignorecase
" Mouse
set mouse=a
" map <ScrollWheelUp> <C-Y>
" map <ScrollWheelDown> <C-E>
set hlsearch
set autoindent
filetype plugin indent on
@ -73,13 +67,18 @@ set clipboard+=unnamedplus
" Theme
set background=dark
colors gruvbox
colorscheme gruvbox-material
let &showbreak = '↳ '
set laststatus=0 ruler
set rnu nu
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 LineNr ctermfg=NONE ctermbg=NONE

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

@ -4,9 +4,9 @@
dark: #282828;
border-color: #1d1f21;
// Black
black: #222222;
blackop: #222222aa;
lightblack: #222222;
black: #181818;
blackop: #18181888;
lightblack: #181818;
//
// Red
red: #cc241d;

Loading…
Cancel
Save