diff options
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/pml68/plugins/colors.lua | 4 | ||||
| -rw-r--r-- | lua/pml68/settings.lua | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lua/pml68/plugins/colors.lua b/lua/pml68/plugins/colors.lua index 6a8eb36..17a1ca1 100644 --- a/lua/pml68/plugins/colors.lua +++ b/lua/pml68/plugins/colors.lua @@ -10,7 +10,7 @@ return { }, }, { - "rose-pine/neovim", + "pml68/rosepine-tmuxed", name = "rose-pine", priority = 1000, lazy = false, @@ -21,7 +21,7 @@ return { italic = false, }, highlight_groups = { - StatusLine = { fg = "iris", bg = "iris", blend = 10 }, + StatusLine = { fg = "iris", bg = "iris", blend = 25 }, StatusLineNC = { fg = "subtle", bg = "surface" }, }, }) diff --git a/lua/pml68/settings.lua b/lua/pml68/settings.lua index 3484993..d56134b 100644 --- a/lua/pml68/settings.lua +++ b/lua/pml68/settings.lua @@ -17,7 +17,7 @@ end local function diagnostics() local warns = vim.diagnostic.get(nil, { severity = vim.diagnostic.severity.WARN }) local errors = vim.diagnostic.get(nil, { severity = vim.diagnostic.severity.ERROR }) - return string.format("[ %d| %d]", #warns, #errors) + return string.format(" %d | %d", #warns, #errors) end local function get_attached_clients() |
