65 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
-- Chadrc overrides this file
 | 
						|
 | 
						|
local M = {}
 | 
						|
 | 
						|
M.options = {
 | 
						|
  nvChad = {
 | 
						|
    update_url = "https://github.com/NvChad/NvChad",
 | 
						|
    update_branch = "dev",
 | 
						|
  },
 | 
						|
}
 | 
						|
 | 
						|
M.ui = {
 | 
						|
  -- hl = highlights
 | 
						|
  hl_add = {},
 | 
						|
  hl_override = {},
 | 
						|
  changed_themes = {},
 | 
						|
  theme_toggle = { "onedark", "one_light" },
 | 
						|
  theme = "onedark", -- default theme
 | 
						|
  transparency = false,
 | 
						|
 | 
						|
  statusline = {
 | 
						|
    separator_style = "default", -- default/round/block/arrow
 | 
						|
    overriden_modules = nil,
 | 
						|
  },
 | 
						|
 | 
						|
  -- lazyload it when there are 1+ buffers
 | 
						|
  tabufline = {
 | 
						|
    enabled = true,
 | 
						|
    lazyload = true,
 | 
						|
    overriden_modules = nil,
 | 
						|
  },
 | 
						|
 | 
						|
  -- nvdash (dashboard)
 | 
						|
  nvdash = {
 | 
						|
    load_on_startup = false,
 | 
						|
 | 
						|
    header = {
 | 
						|
      "           ▄ ▄                   ",
 | 
						|
      "       ▄   ▄▄▄     ▄ ▄▄▄ ▄ ▄     ",
 | 
						|
      "       █ ▄ █▄█ ▄▄▄ █ █▄█ █ █     ",
 | 
						|
      "    ▄▄ █▄█▄▄▄█ █▄█▄█▄▄█▄▄█ █     ",
 | 
						|
      "  ▄ █▄▄█ ▄ ▄▄ ▄█ ▄▄▄▄▄▄▄▄▄▄▄▄▄▄  ",
 | 
						|
      "  █▄▄▄▄ ▄▄▄ █ ▄ ▄▄▄ ▄ ▄▄▄ ▄ ▄ █ ▄",
 | 
						|
      "▄ █ █▄█ █▄█ █ █ █▄█ █ █▄█ ▄▄▄ █ █",
 | 
						|
      "█▄█ ▄ █▄▄█▄▄█ █ ▄▄█ █ ▄ █ █▄█▄█ █",
 | 
						|
      "    █▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄█ █▄█▄▄▄█    ",
 | 
						|
    },
 | 
						|
 | 
						|
    buttons = {
 | 
						|
      { "  Find File", "Spc f f", "Telescope find_files" },
 | 
						|
      { "  Recent Files", "Spc f o", "Telescope oldfiles" },
 | 
						|
      { "  Find Word", "Spc f w", "Telescope live_grep" },
 | 
						|
      { "  Bookmarks", "Spc b m", "Telescope marks" },
 | 
						|
      { "  Themes", "Spc t f", "Telescope themes" },
 | 
						|
    },
 | 
						|
  },
 | 
						|
}
 | 
						|
 | 
						|
M.plugins = {}
 | 
						|
 | 
						|
-- check core.mappings for table structure
 | 
						|
M.mappings = require "core.mappings"
 | 
						|
 | 
						|
return M
 |