colorschemes

This commit is contained in:
Cheri 2020-11-22 14:38:26 +02:00 committed by vibikim
parent 4eba91c949
commit f813a52320
3 changed files with 64 additions and 37 deletions

View file

@ -38,39 +38,76 @@
! special ! special
*.foreground: #e7d5e2 !*.foreground: #e7d5e2
*.background: #0a0408 !*.background: #0a0408
*.cursorColor: #e7d5e2 !*.cursorColor: #e7d5e2
! black ! black
*.color0: #12080f !*.color0: #12080f
*.color8: #e2b3ab !*.color8: #e2b3ab
! red ! red
*.color1: #21121d !*.color1: #21121d
*.color9: #e6c6dc !*.color9: #e6c6dc
! green ! green
*.color2: #382132 !*.color2: #382132
*.color10: #cbc687 !*.color10: #cbc687
! yellow ! yellow
*.color3: #57364f !*.color3: #57364f
*.color11: #e1b0a8 !*.color11: #e1b0a8
! blue ! blue
*.color4: #7f5173 !*.color4: #7f5173
*.color12: #b1b6df !*.color12: #b1b6df
! magenta ! magenta
*.color5: #af719f !*.color5: #af719f
*.color13: #eecae3 !*.color13: #eecae3
! cyan ! cyan
*.color6: #cea4c2 !*.color6: #cea4c2
*.color14: #65c4cd !*.color14: #65c4cd
! white ! white
*.color7: #eddfe8 !*.color7: #eddfe8
*.color15: #f0c1b9 !*.color15: #f0c1b9
! special
*.foreground: #c6c8d1
*.background: #161821
*.cursorColor: #c6c8d1
! black
*.color0: #161821
*.color8: #6b7089
! red
*.color1: #e27878
*.color9: #e98989
! green
*.color2: #b4be82
*.color10: #c0ca8e
! yellow
*.color3: #e2a478
*.color11: #e9b189
! blue
*.color4: #84a0c6
*.color12: #91acd1
! magenta
*.color5: #a093c7
*.color13: #ada0d3
! cyan
*.color6: #89b8c2
*.color14: #95c4ce
! white
*.color7: #c6c8d1
*.color15: #d2d4de

View file

@ -81,22 +81,6 @@ do
done done
#bspc config normal_border_color
#bspc config active_border_color
#bspc config focused_border_color
#bspc config presel_feedback_color
#bspc config normal_sticky_border_color
#bspc config active_sticky_border_color
#bspc config focused_sticky_border_color
#bspc config normal_private_border_color ""
#bspc config active_private_border_color ""
#bspc config focused_private_border_color ""
### ###
# RULES # RULES
### ###
@ -107,6 +91,7 @@ bspc rule -a copyq state=floating
bspc rule -a Blueman-manager state=floating bspc rule -a Blueman-manager state=floating
bspc rule -a Arandr state=floating bspc rule -a Arandr state=floating
bspc rule -a Galculator state=floating bspc rule -a Galculator state=floating
bspc rule -a Nitrogen state=floating
bspc rule -a Screenkey manage=off bspc rule -a Screenkey manage=off
bspc rule -a Navigator desktop='^1' bspc rule -a Navigator desktop='^1'
bspc rule -a discord desktop='^4' bspc rule -a discord desktop='^4'

View file

@ -10,6 +10,7 @@ set encoding=utf-8
set number set number
set termguicolors set termguicolors
set splitbelow splitright set splitbelow splitright
set scrolloff=5
set cursorline set cursorline
@ -35,16 +36,20 @@ call plug#begin('~/.local/share/nvim/plugged')
" REMINDER - some plugins have the following external dependencies " REMINDER - some plugins have the following external dependencies
" hexokinase(color preview): go " hexokinase(color preview): go
" coc(code completion): nodejs, yarn " coc(code completion): nodejs, yarn
" vimdiscord: nvim installed from pip (python extension thingy)
Plug 'vbe0201/vimdiscord'
Plug 'rrethy/vim-hexokinase', { 'do': 'make hexokinase' } Plug 'rrethy/vim-hexokinase', { 'do': 'make hexokinase' }
Plug 'vimwiki/vimwiki' Plug 'vimwiki/vimwiki'
Plug 'franbach/miramare' "Plug 'franbach/miramare'
Plug 'cocopon/iceberg.vim'
Plug 'patstockwell/vim-monokai-tasty'
Plug 'antoinemadec/FixCursorHold.nvim' Plug 'antoinemadec/FixCursorHold.nvim'
Plug 'lambdalisue/fern.vim' Plug 'lambdalisue/fern.vim'
Plug 'neoclide/coc.nvim', {'branch': 'release'} Plug 'neoclide/coc.nvim', {'branch': 'release'}
call plug#end() call plug#end()
colorscheme miramare colorscheme iceberg
" hexokinase " hexokinase
let g:Hexokinase_refreshEvents = ['InsertLeave'] let g:Hexokinase_refreshEvents = ['InsertLeave']