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

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

@ -1,22 +1,10 @@
" 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 +26,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 +36,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
@ -73,13 +67,18 @@ 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

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

Loading…
Cancel
Save