all repos

init.lua @ 7c1e37c7fd0b11ff87aa876c8381f78ad9eba3be

my nvim config

init.lua/lua/fk/plugin/statusline.lua(view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require("lualine").setup {
  options = {
    theme = "onenord",
    component_separators = { "", "" },
    section_separators = { "", "" },
    disabled_filetypes = { "NvimTree", "Telescope", "alpha" },
    always_divide_middle = false,
  },
  sections = {
    lualine_a = { "filename" },
    lualine_b = { "branch", "diff" },
    lualine_c = {},
    lualine_x = {},
    lualine_y = { { "diagnostics", sources = { "nvim_diagnostic" } } },
    lualine_z = { "location" },
  },
}