aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/powerline.lua
diff options
context:
space:
mode:
authorAlec Goncharow <algo@cloudflare.com>2024-01-10 13:05:50 -0500
committerAlec Goncharow <alec@goncharow.dev>2024-01-10 14:18:18 -0500
commit5d458bf9a4773ac77b38883b8d7736497b8251e3 (patch)
tree6a7f3fc8aa3a08dd712f46acb6132e7125bd2d95 /.config/nvim/lua/powerline.lua
parentc341207ff58c8bd988b2edb3e81831989aa7ff0b (diff)
yaks cannot be stopped
Diffstat (limited to '.config/nvim/lua/powerline.lua')
-rw-r--r--.config/nvim/lua/powerline.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/.config/nvim/lua/powerline.lua b/.config/nvim/lua/powerline.lua
index f7394e2..9c29b12 100644
--- a/.config/nvim/lua/powerline.lua
+++ b/.config/nvim/lua/powerline.lua
@@ -1,9 +1,9 @@
require('lualine').setup {
options = {
icons_enabled = true,
- theme = 'gruvbox_dark',
- component_separators = { left = '', right = '' },
- section_separators = { left = '', right = '' },
+ theme = 'everforest',
+ component_separators = { left = '', right = '' },
+ section_separators = { left = '', right = '' },
disabled_filetypes = {
statusline = {},
winbar = {},
@@ -19,9 +19,9 @@ require('lualine').setup {
},
sections = {
lualine_a = { 'mode' },
- lualine_b = { 'branch', 'diff', 'diagnostics' },
+ lualine_b = { 'branch', 'diff' },
lualine_c = { { 'filename', path = 1 } },
- lualine_x = { 'encoding', 'fileformat', 'filetype' },
+ lualine_x = { 'diagnostics', 'encoding', 'fileformat', 'filetype' },
lualine_y = { 'progress' },
lualine_z = { 'location' }
},