lualine: use insert mode theming for terminal mode
This commit is contained in:
parent
7d10a43ad0
commit
58783dce22
1 changed files with 3 additions and 1 deletions
4
init.lua
4
init.lua
|
|
@ -50,11 +50,13 @@ opt.listchars = {
|
||||||
}
|
}
|
||||||
---- lualine.nvim ----
|
---- lualine.nvim ----
|
||||||
local lualine = require('lualine')
|
local lualine = require('lualine')
|
||||||
|
local theme = require('lualine.themes.gruvbox')
|
||||||
|
theme.terminal = theme.insert
|
||||||
lualine.setup({
|
lualine.setup({
|
||||||
options = {
|
options = {
|
||||||
component_separators = { left = '│', right = '│' },
|
component_separators = { left = '│', right = '│' },
|
||||||
section_separators = { left = '', right = '' },
|
section_separators = { left = '', right = '' },
|
||||||
globalstatus = true,
|
theme = theme,
|
||||||
},
|
},
|
||||||
sections = {
|
sections = {
|
||||||
lualine_a = { 'mode' },
|
lualine_a = { 'mode' },
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue