9ffddb6b52
* move teleacope files, updater and related utils to https://github.com/NvChad/core * restructure config file and directory structure * expose mappings for better escape * allow multiple mappings for some * improve merge table function for the same * move autocommands to a seperate file * rearrange everything alphabetically where sanely possible * rearrange packer plugin list on the basis of trigerred state config structure now . ├── init.lua ├── LICENSE ├── lua │ ├── chadrc.lua │ ├── colors │ │ ├── highlights.lua │ │ ├── init.lua │ │ └── themes │ │ ├── chadracula.lua │ │ ├── everforest.lua │ │ ├── gruvchad.lua │ │ ├── javacafe.lua │ │ ├── mountain.lua │ │ ├── norchad.lua │ │ ├── one-light.lua │ │ ├── onedark.lua │ │ ├── tokyonight.lua │ │ └── tomorrow-night.lua │ ├── core │ │ ├── autocmds.lua │ │ ├── init.lua │ │ ├── mappings.lua │ │ ├── options.lua │ │ └── utils.lua │ ├── default_config.lua │ └── plugins │ ├── configs │ │ ├── autopairs.lua │ │ ├── autosave.lua │ │ ├── bufferline.lua │ │ ├── chadsheet.lua │ │ ├── compe.lua │ │ ├── dashboard.lua │ │ ├── gitsigns.lua │ │ ├── icons.lua │ │ ├── lspconfig.lua │ │ ├── luasnip.lua │ │ ├── nvimtree.lua │ │ ├── others.lua │ │ ├── statusline.lua │ │ ├── telescope.lua │ │ ├── treesitter.lua │ │ └── zenmode.lua │ ├── init.lua │ └── packerInit.lua └── README.md
36 lines
814 B
Lua
36 lines
814 B
Lua
local colors = {
|
|
white = "#c0caf5",
|
|
darker_black = "#151621",
|
|
black = "#171823", -- nvim bg
|
|
black2 = "#20212c",
|
|
one_bg = "#242530",
|
|
one_bg2 = "#292a35",
|
|
one_bg3 = "#353b45",
|
|
grey = "#40486a",
|
|
grey_fg = "#4a5274",
|
|
grey_fg2 = "#4f5779",
|
|
light_grey = "#545c7e",
|
|
red = "#f7768e",
|
|
baby_pink = "#DE8C92",
|
|
pink = "#ff75a0",
|
|
line = "#242530", -- for lines like vertsplit
|
|
green = "#9ece6a",
|
|
vibrant_green = "#73daca",
|
|
nord_blue = "#80a8fd",
|
|
blue = "#7aa2f7",
|
|
yellow = "#e7c787",
|
|
sun = "#EBCB8B",
|
|
purple = "#bb9af7",
|
|
dark_purple = "#9d7cd8",
|
|
teal = "#0db9d7",
|
|
orange = "#ff9e64",
|
|
cyan = "#7dcfff",
|
|
statusline_bg = "#1d1e29",
|
|
lightbg = "#252631",
|
|
lightbg2 = "#22232e",
|
|
pmenu_bg = "#7aa2f7",
|
|
folder_bg = "#7aa2f7",
|
|
}
|
|
|
|
return colors
|