Show insert mode in terminal (powerline theme) (#989)

This commit is contained in:
Miroslav Bendík 2023-03-30 06:15:36 +02:00 committed by GitHub
parent 0fc41b68a1
commit 092f2497f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 2 deletions

View File

@ -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

View File

@ -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