savq / melange-nvim

🗡️ Warm color scheme for Neovim and beyond
MIT License
719 stars 55 forks source link

Add Lualine theme #86

Closed Nandax00 closed 4 months ago

Nandax00 commented 4 months ago

Looks as follows:

I have used the following Lualine config:

require("lualine").setup {
    sections = {
        lualine_b = { "diagnostics" },
        lualine_c = {
            {
                "filename",
                newfile_status = true,
                path = 1, -- relative path
                symbols = { modified = " ●" },
            }
        },
    },
    tabline = {
        lualine_a = {
            {
                "tabs",
                mode = 2, -- tabnumber + filename
                use_mode_colors = true,
                symbols = { modified = " ●" },
            }
        },
        lualine_b = { "branch", "diff" },
    },
}

closes #61.

Nandax00 commented 4 months ago

Applied suggestions from #85.