Skip to content

Latest commit

 

History

History
109 lines (88 loc) · 2.53 KB

LUALINE.md

File metadata and controls

109 lines (88 loc) · 2.53 KB

To enable the github theme for Lualine, simply specify it in your lualine settings after theme settings.

packer

use {
  "hoob3rt/lualine.nvim",
  after = "github-nvim-theme",
  config = function()
    require("lualine").setup {
      options = {
        theme = "auto" -- or you can assign github_* themes individually.
        -- ... your lualine config
      }
    }
  end
}
use {
  "projekt0n/github-nvim-theme",
  config = function()
    require("github-theme").setup({
      theme_style = "dark_default"
      -- your github config
    })
  end
}

init.vim

lua << EOF
require('lualine').setup {
  options = {
    theme = "auto" -- or you can assign github_* themes individually.
    -- ... your lualine config
  }
}
EOF

init.lua

require('lualine').setup {
  options = {
    theme = "auto" -- or you can assign github_* themes individually.
    -- ... your lualine config
  }
}

Screenshots

github_dark

normal insert visual command terminal

github_dimmed

normal insert visual command terminal

github_dark_default

normal insert visual command terminal

github_dark_colorblind

normal insert visual command terminal

github_light

normal insert visual command terminal

github_light_default

normal insert visual command terminal

github_light_colorblind

normal insert visual command terminal