askfiy / visual_studio_code

A `neovim` theme that highly restores `vscode`, so that your friends will no longer be surprised that you use `neovim`, because they will think you are using `vscode` ..
Mozilla Public License 2.0
169 stars 11 forks source link

Custom lualine no longer working #4

Closed itsdeadguy closed 1 year ago

itsdeadguy commented 1 year ago

I just installed the theme, but i can't get the custom lualine to show up as in the screenshots. do i need to do something else? here's how i've configured everything.

https://0x0.st/Hp8H.png

askfiy commented 1 year ago

sections should not be included in options, but at the same level as options

askfiy commented 1 year ago
    require("lualine").setup({
        options = {
            theme = "auto",
            icons_enabled = true,
            component_separators = { left = "", right = "" },
            section_separators = { left = "", right = "" },
            disabled_filetypes = {},
            globalstatus = true,
            refresh = {
                statusline = 1000,
            },
        },
        sections = require("visual_studio_code").get_lualine_sections(),
    })