summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoe <rrbo@proton.me>2023-09-19 17:51:45 +0200
committerJoe <rrbo@proton.me>2023-09-19 17:51:45 +0200
commit7dc5d2ef4923552fd21b1dc0a8d34804ab12ad01 (patch)
tree22f32bd4ed8b94ad37f4bb0405e6e02b33438014
parentup (diff)
downloaddotfiles-bsd-7dc5d2ef4923552fd21b1dc0a8d34804ab12ad01.tar.gz
dotfiles-bsd-7dc5d2ef4923552fd21b1dc0a8d34804ab12ad01.tar.bz2
dotfiles-bsd-7dc5d2ef4923552fd21b1dc0a8d34804ab12ad01.tar.xz
dotfiles-bsd-7dc5d2ef4923552fd21b1dc0a8d34804ab12ad01.tar.zst
dotfiles-bsd-7dc5d2ef4923552fd21b1dc0a8d34804ab12ad01.zip
up
-rw-r--r--.config/nvim/lua/plugs-config/lualine.lua13
1 files changed, 7 insertions, 6 deletions
diff --git a/.config/nvim/lua/plugs-config/lualine.lua b/.config/nvim/lua/plugs-config/lualine.lua
index 10471d8..f3d2fe7 100644
--- a/.config/nvim/lua/plugs-config/lualine.lua
+++ b/.config/nvim/lua/plugs-config/lualine.lua
@@ -157,6 +157,7 @@ ins_left {
show_filename_only = false,
hide_filename_extension = false,
show_modified_status = true,
+ icons_enabled = true,
symbols = {
modified = ' ●', -- Text to show when the buffer is modified
alternate_file = '', -- Text to show to identify the alternate file
@@ -241,18 +242,18 @@ ins_right {
}
ins_right {
- -- filesize component
- 'filesize',
- cond = conditions.buffer_not_empty,
-}
-
-ins_right {
'branch',
icon = '',
color = { fg = colors.violet, gui = 'bold' },
}
ins_right {
+ -- filesize component
+ 'filesize',
+ cond = conditions.buffer_not_empty,
+}
+
+ins_right {
'diff',
-- Is it me or the symbol for modified us really weird
symbols = { added = ' ', modified = '󰝤 ', removed = ' ' },