Show insert mode in terminal (powerline theme) (#989)
This commit is contained in:
parent
0fc41b68a1
commit
092f2497f0
|
@ -19,7 +19,7 @@ local Colors = {
|
|||
gray10 = '#f0f0f0',
|
||||
}
|
||||
|
||||
return {
|
||||
local M = {
|
||||
normal = {
|
||||
a = { fg = Colors.darkestgreen, bg = Colors.brightgreen, gui = 'bold' },
|
||||
b = { fg = Colors.gray10, bg = Colors.gray5 },
|
||||
|
@ -38,3 +38,7 @@ return {
|
|||
c = { bg = Colors.gray1, fg = Colors.gray5 },
|
||||
},
|
||||
}
|
||||
|
||||
M.terminal = M.insert
|
||||
|
||||
return M
|
||||
|
|
|
@ -22,7 +22,7 @@ local colors = {
|
|||
cyan = '#00DFFF',
|
||||
}
|
||||
|
||||
return {
|
||||
local M = {
|
||||
normal = {
|
||||
a = { bg = colors.neon, fg = colors.black, gui = 'bold' },
|
||||
b = { bg = colors.gray, fg = colors.white },
|
||||
|
@ -54,3 +54,7 @@ return {
|
|||
c = { bg = colors.darkgray, fg = colors.gray },
|
||||
},
|
||||
}
|
||||
|
||||
M.terminal = M.insert
|
||||
|
||||
return M
|
||||
|
|
Loading…
Reference in New Issue