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
836 B
Lua
36 lines
836 B
Lua
local colors = {
|
|
white = "#abb2bf",
|
|
darker_black = "#1b1f27",
|
|
black = "#1e222a", -- nvim bg
|
|
black2 = "#252931",
|
|
one_bg = "#282c34", -- real bg of onedark
|
|
one_bg2 = "#353b45",
|
|
one_bg3 = "#30343c",
|
|
grey = "#42464e",
|
|
grey_fg = "#565c64",
|
|
grey_fg2 = "#6f737b",
|
|
light_grey = "#6f737b",
|
|
red = "#d47d85",
|
|
baby_pink = "#DE8C92",
|
|
pink = "#ff75a0",
|
|
line = "#2a2e36", -- for lines like vertsplit
|
|
green = "#A3BE8C",
|
|
vibrant_green = "#7eca9c",
|
|
nord_blue = "#81A1C1",
|
|
blue = "#61afef",
|
|
yellow = "#e7c787",
|
|
sun = "#EBCB8B",
|
|
purple = "#b4bbc8",
|
|
dark_purple = "#c882e7",
|
|
teal = "#519ABA",
|
|
orange = "#fca2aa",
|
|
cyan = "#a3b8ef",
|
|
statusline_bg = "#22262e",
|
|
lightbg = "#2d3139",
|
|
lightbg2 = "#262a32",
|
|
pmenu_bg = "#A3BE8C",
|
|
folder_bg = "#61afef",
|
|
}
|
|
|
|
return colors
|