Refactoring

This commit is contained in:
Olivier Roques
2020-12-23 22:54:52 +01:00
parent be48745e8e
commit 7b0dd9a92c
5 changed files with 86 additions and 118 deletions

View File

@@ -1,18 +1,29 @@
local M = {}
M.colors = {
A = {
return {
mode = {
inactive = {ctermfg='170',guifg='#C678DD'},
normal = {ctermfg='170',guifg='#C678DD'},
insert = {ctermfg='170',guifg='#C678DD'},
replace = {ctermfg='170',guifg='#C678DD'},
visual = {ctermfg='170',guifg='#C678DD'},
},
low = {
active = {ctermfg='170',guifg='#C678DD'},
inactive = {ctermfg='172',guifg='#C6080D'},
}
},
med = {
active = {ctermfg='170',guifg='#C678DD'},
inactive = {ctermfg='172',guifg='#C6080D'},
},
high = {
active = {ctermfg='170',guifg='#C678DD'},
inactive = {ctermfg='172',guifg='#C6080D'},
},
error = {
active = {ctermfg='170',guifg='#C678DD'},
inactive = {ctermfg='172',guifg='#C6080D'},
},
warning = {
active = {ctermfg='170',guifg='#C678DD'},
inactive = {ctermfg='172',guifg='#C6080D'},
},
}
M.mode_colors = {
inactive = {ctermfg='170',guifg='#C678DD'},
normal = {ctermfg='170',guifg='#C678DD'},
insert = {ctermfg='170',guifg='#C678DD'},
replace = {ctermfg='170',guifg='#C678DD'},
visual = {ctermfg='170',guifg='#C678DD'},
}
return M