Update to use nvim for mergetool & battery config update

This commit is contained in:
Salar Rahmanian 2022-09-21 20:13:17 -07:00
parent 90571fac9e
commit 285f132d14
3 changed files with 12 additions and 10 deletions

View file

@ -181,7 +181,9 @@ gls.right[4] = {
gls.right[5] = {
BatteryNvim = {
provider = function()
return require 'battery'.get_status_line()
local status = require 'battery'.get_status_line()
local formatted = string.format(status)
return formatted
end,
separator = '',
separator_highlight = { colors.bg, colors.purple },