Back to molokai.
This commit is contained in:
parent
d448012f61
commit
c85628c5d7
4 changed files with 34 additions and 37 deletions
|
@ -96,29 +96,28 @@ unsigned int tabspaces = 8;
|
||||||
|
|
||||||
/* Terminal colors (16 first used in escape sequence) */
|
/* Terminal colors (16 first used in escape sequence) */
|
||||||
static const char *colorname[] = {
|
static const char *colorname[] = {
|
||||||
"#000000",
|
"#272822",
|
||||||
"#ff3333",
|
"#fd4285",
|
||||||
"#b8cc52",
|
"#a6e22d",
|
||||||
"#e7c547",
|
"#e5da72",
|
||||||
"#36a3d9",
|
"#0094d8",
|
||||||
"#f07178",
|
"#9a37ff",
|
||||||
"#95e6cb",
|
"#50b6d8",
|
||||||
"#ffffff",
|
"#c7c7c7",
|
||||||
"#323232",
|
"#676767",
|
||||||
"#ff6565",
|
"#fa7fac",
|
||||||
"#eafe84",
|
"#bde271",
|
||||||
"#fff779",
|
"#fff27f",
|
||||||
"#68d5ff",
|
"#005577",
|
||||||
"#ffa3aa",
|
"#bd9eff",
|
||||||
"#c7fffd",
|
"#5ed6fe",
|
||||||
"#ffffff",
|
"#feffff",
|
||||||
|
|
||||||
[255] = 0,
|
[255] = 0,
|
||||||
|
|
||||||
/* more colors can be added after 255 to use with DefaultXX */
|
/* more colors can be added after 255 to use with DefaultXX */
|
||||||
"#0f1419", /* 256 -> background */
|
"#272822", /* 256 -> background */
|
||||||
"#e6e1cf", /* 257 -> foreground */
|
"#c7c7c7", /* 257 -> foreground */
|
||||||
"#f29718", /* 258 -> cursor */
|
"#c7c7c7", /* 258 -> cursor */
|
||||||
"#272822", /* 259 -> cursor text */
|
"#272822", /* 259 -> cursor text */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -94,18 +94,18 @@ dgroups_app_rules = [] # type: list
|
||||||
|
|
||||||
layouts = [
|
layouts = [
|
||||||
layout.Columns(
|
layout.Columns(
|
||||||
border_focus='#ffffff',
|
border_focus='#005577',
|
||||||
border_normal='#0f1419',
|
border_normal="#272822",
|
||||||
border_on_single = False,
|
border_on_single = False,
|
||||||
border_width=2,
|
border_width=5,
|
||||||
insert_position=1,
|
insert_position=1,
|
||||||
margin=[5, 5, 5, 5]
|
margin=[5, 5, 5, 5]
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
|
|
||||||
widget_defaults = dict(
|
widget_defaults = dict(
|
||||||
background='#0f1419',
|
foreground="#f8f8f2",
|
||||||
foreground='#e6e1cf',
|
background="#272822",
|
||||||
font="RobotoMono Nerd Font Medium",
|
font="RobotoMono Nerd Font Medium",
|
||||||
fontsize=14,
|
fontsize=14,
|
||||||
)
|
)
|
||||||
|
@ -119,7 +119,7 @@ screens = [
|
||||||
top=bar.Bar(
|
top=bar.Bar(
|
||||||
[
|
[
|
||||||
widget.GroupBox(
|
widget.GroupBox(
|
||||||
active='#e6e1cf',
|
active='#f8f8f2',
|
||||||
disable_drag=True,
|
disable_drag=True,
|
||||||
highlight_method='block',
|
highlight_method='block',
|
||||||
rounded=False,
|
rounded=False,
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
call plug#begin('$XDG_DATA_HOME/nvim/vim-plugins')
|
call plug#begin('$XDG_DATA_HOME/nvim/vim-plugins')
|
||||||
Plug 'ayu-theme/ayu-vim'
|
|
||||||
Plug 'kamykn/skyknight'
|
Plug 'kamykn/skyknight'
|
||||||
Plug 'junegunn/fzf'
|
Plug 'junegunn/fzf'
|
||||||
Plug 'junegunn/fzf.vim'
|
Plug 'junegunn/fzf.vim'
|
||||||
|
@ -49,19 +48,18 @@ map <leader>s <Esc>:set spell!<CR>
|
||||||
|
|
||||||
set bg=dark
|
set bg=dark
|
||||||
set termguicolors
|
set termguicolors
|
||||||
let ayucolor='dark'
|
colorscheme skyknight
|
||||||
colorscheme ayu
|
|
||||||
|
|
||||||
hi Comment gui=italic
|
hi Comment gui=italic
|
||||||
hi BadWhitespace guibg=#770000
|
hi BadWhitespace guibg=#770000
|
||||||
hi ColorColumn guibg=#770000
|
hi ColorColumn guibg=#770000
|
||||||
hi DiffChange guibg=#0f1419
|
hi DiffChange guibg=#465457
|
||||||
hi DiffText guifg=#ff8700
|
hi DiffText guifg=#ff8700 guibg=#465457
|
||||||
" hi FoldColumn guifg=#465457 guibg=#272822
|
hi FoldColumn guifg=#465457 guibg=#272822
|
||||||
" hi GitGutterChange guifg=#bbbb00 guibg=#272822
|
hi GitGutterChange guifg=#bbbb00 guibg=#272822
|
||||||
" hi LineNr guifg=#465457 guibg=#272822
|
hi LineNr guifg=#465457 guibg=#272822
|
||||||
" hi NonText guifg=#465457 guibg=#272822
|
hi NonText guifg=#465457 guibg=#272822
|
||||||
hi SignColumn guibg=#0f1419
|
hi SignColumn guifg=#465457 guibg=#272822
|
||||||
hi Visual guibg=#005577
|
hi Visual guibg=#005577
|
||||||
hi SpellBad guibg=#770000
|
hi SpellBad guibg=#770000
|
||||||
|
|
||||||
|
|
|
@ -29,4 +29,4 @@ set -g status-left ""
|
||||||
set -g status-right "#[fg=brightblue] #h "
|
set -g status-right "#[fg=brightblue] #h "
|
||||||
setw -g window-status-separator ""
|
setw -g window-status-separator ""
|
||||||
setw -g window-status-format "#[fg=default,bg=default] #W "
|
setw -g window-status-format "#[fg=default,bg=default] #W "
|
||||||
setw -g window-status-current-format "#[fg=0,bg=brightblue] #W "
|
setw -g window-status-current-format "#[fg=brightwhite,bg=brightblue] #W "
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue