diff --git a/lua/plugins/UI.lua b/lua/plugins/UI.lua index a02c4b1..f157dcc 100644 --- a/lua/plugins/UI.lua +++ b/lua/plugins/UI.lua @@ -5,18 +5,31 @@ return { opts.symbol = "┆" end, }, + + { + "SmiteshP/nvim-navic", + opts = function(_, opts) + opts.highlight = false + end, + }, + { "nvim-lualine/lualine.nvim", opts = function(_, opts) local icons = require("lazyvim.config").icons - opts.options.theme = "codedark" + opts.options.theme = "horizon" opts.sections = { lualine_a = { "mode" }, lualine_b = { { "filetype", icon_only = true, separator = "", padding = { left = 1, right = 0 } }, - { "filename", path = 1, symbols = { modified = "  ", readonly = "", unnamed = "" } }, + { + "filename", + path = 1, + separator = "", + symbols = { modified = "  ", readonly = "", unnamed = "" }, + }, }, lualine_c = { { @@ -35,8 +48,14 @@ return { }, }, lualine_x = opts.sections.lualine_x, - lualine_y = { "fileformat", "encoding" }, - lualine_z = { "progress", "location" }, + lualine_y = { + { "fileformat", separator = "", padding = { left = 1, right = 0 } }, + "encoding", + }, + lualine_z = { + "progress", + { "location", padding = { left = 0, right = 1 } }, + }, } end, },