revert(nvim): re-add lualine and noice

This reverts commit db7d2b442f03c9d02bd8471c71f3eb483a40ca2b.
This commit is contained in:
Oliver Davies 2023-09-01 12:11:15 +01:00
parent bab8f12799
commit 59e7868f52
3 changed files with 0 additions and 110 deletions

View file

@ -1,40 +0,0 @@
local status_ok, lualine = pcall(require, "lualine")
if not status_ok then
return
end
local noice = require 'noice'
lualine.setup {
options = {
component_separators = { left = '', right = '' },
extensions = { "fzf", "quickfix" },
icons_enabled = false,
section_separators = { left = '', right = '' },
theme = "catppuccin"
},
sections = {
lualine_x = {
{
noice.api.status.message.get_hl,
cond = noice.api.status.message.has,
},
{
noice.api.status.command.get,
cond = noice.api.status.command.has,
color = { fg = "#EED49F" },
},
{
noice.api.status.mode.get,
cond = noice.api.status.mode.has,
color = { fg = "#EED49F" },
},
{
noice.api.status.search.get,
cond = noice.api.status.search.has,
color = { fg = "#EED49F" },
},
},
},
}