all repos

init.lua @ cb435008e83885cb7d9acfb72bb050f61ec0d7c1

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
18
19
20
21
22
23
24
25
require("lualine").setup {
  options = {
    theme = "tokyonight",
    component_separators = { "", "" },
    section_separators = { "", "" },
    disabled_filetypes = { "NvimTree", "Telescope" },
    always_divide_middle = false,
  },
  sections = {
    lualine_a = { "filename" },
    lualine_b = { "branch" },
    lualine_c = { "location" },
    lualine_x = { "diff", { "diagnostics", sources = { "nvim_diagnostic" } } },
    lualine_y = {},
    lualine_z = {},
  },
  inactive_sections = {
    lualine_a = {},
    lualine_b = {},
    lualine_c = { "filename" },
    lualine_x = { "location" },
    lualine_y = {},
    lualine_z = {},
  },
}