Skip to content

Kibadda/starter.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

starter.nvim

Configuration

To change the default configuration, set vim.g.starter.

Default config:

vim.g.starter = {
  items = function()
    return {}
  end,
  options = {
    timeoutlen = 1,
    listchars = "",
    cursorline = false,
    statuscolumn = "",
    signcolumn = "no",
    number = false,
    relativenumber = false,
    winbar = "",
  },
  indicator = ">",
  highlights = {
    Day = { fg = "#EA6962" },
    Selected = { fg = "#7DAEA3" },
    Indicator = { fg = "#7DAEA3" },
    Match = { underline = true },
  },
  border = {
    "", -- top left
    "", -- top right
    "", -- bottom left
    "", -- bottom right
    "", -- top and bottom
    "", -- left and right
    "", -- left intersection
    "", -- right intersection
  },
}