diff options
author | Annenpolka <56289203+annenpolka@users.noreply.github.com> | 2022-02-15 17:17:06 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-15 09:17:06 +0100 |
commit | 1a81714cb7154a2b1c93300a072d80eb43130a5f (patch) | |
tree | 230765a7206a9c18bfc14a35a4119b701b892bfc /lua/no-clown-fiesta/init.lua | |
parent | a59a6812b0d245a8b2da516f8762c15836d83438 (diff) |
feat: add nvim-cmp colors (#1)
Diffstat (limited to 'lua/no-clown-fiesta/init.lua')
-rw-r--r-- | lua/no-clown-fiesta/init.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lua/no-clown-fiesta/init.lua b/lua/no-clown-fiesta/init.lua index 319d937..0af7b70 100644 --- a/lua/no-clown-fiesta/init.lua +++ b/lua/no-clown-fiesta/init.lua @@ -17,6 +17,7 @@ local highlights = require "no-clown-fiesta.highlights" local LSP = require "no-clown-fiesta.LSP" local markdown = require "no-clown-fiesta.markdown" local NvimTree = require "no-clown-fiesta.NvimTree" +local NvimCmp = require "no-clown-fiesta.NvimCmp" local StatusLine = require "no-clown-fiesta.StatusLine" local Telescope = require "no-clown-fiesta.Telescope" local Treesitter = require "no-clown-fiesta.Treesitter" @@ -29,6 +30,7 @@ local skeletons = { highlights, markdown, NvimTree, + NvimCmp, LSP, StatusLine, Telescope, |