got tokyo night community working
This commit is contained in:
		@@ -4,6 +4,7 @@
 | 
				
			|||||||
  "LuaSnip": { "branch": "master", "commit": "8ae1dedd988eb56441b7858bd1e8554dfadaa46d" },
 | 
					  "LuaSnip": { "branch": "master", "commit": "8ae1dedd988eb56441b7858bd1e8554dfadaa46d" },
 | 
				
			||||||
  "aerial.nvim": { "branch": "master", "commit": "3748e87a316a68754341cdffcef44fee61dee51c" },
 | 
					  "aerial.nvim": { "branch": "master", "commit": "3748e87a316a68754341cdffcef44fee61dee51c" },
 | 
				
			||||||
  "alpha-nvim": { "branch": "main", "commit": "41283fb402713fc8b327e60907f74e46166f4cfd" },
 | 
					  "alpha-nvim": { "branch": "main", "commit": "41283fb402713fc8b327e60907f74e46166f4cfd" },
 | 
				
			||||||
 | 
					  "astrocommunity": { "branch": "main", "commit": "c6c5991a03d7f81a0bf24845a9e53690beaac831" },
 | 
				
			||||||
  "astrocore": { "branch": "main", "commit": "6ad335ddb3dd4f1a99f23049dd201f3dd50beeb8" },
 | 
					  "astrocore": { "branch": "main", "commit": "6ad335ddb3dd4f1a99f23049dd201f3dd50beeb8" },
 | 
				
			||||||
  "astrolsp": { "branch": "main", "commit": "21629f447c574965399329a8dd925d9eeac82752" },
 | 
					  "astrolsp": { "branch": "main", "commit": "21629f447c574965399329a8dd925d9eeac82752" },
 | 
				
			||||||
  "astrotheme": { "branch": "main", "commit": "8b316aa3ecd8c4206430379c0b1da0b4e7969ab9" },
 | 
					  "astrotheme": { "branch": "main", "commit": "8b316aa3ecd8c4206430379c0b1da0b4e7969ab9" },
 | 
				
			||||||
@@ -56,6 +57,7 @@
 | 
				
			|||||||
  "telescope.nvim": { "branch": "master", "commit": "6312868392331c9c0f22725041f1ec2bef57c751" },
 | 
					  "telescope.nvim": { "branch": "master", "commit": "6312868392331c9c0f22725041f1ec2bef57c751" },
 | 
				
			||||||
  "todo-comments.nvim": { "branch": "main", "commit": "a7e39ae9e74f2c8c6dc4eea6d40c3971ae84752d" },
 | 
					  "todo-comments.nvim": { "branch": "main", "commit": "a7e39ae9e74f2c8c6dc4eea6d40c3971ae84752d" },
 | 
				
			||||||
  "toggleterm.nvim": { "branch": "main", "commit": "193786e0371e3286d3bc9aa0079da1cd41beaa62" },
 | 
					  "toggleterm.nvim": { "branch": "main", "commit": "193786e0371e3286d3bc9aa0079da1cd41beaa62" },
 | 
				
			||||||
 | 
					  "tokyonight.nvim": { "branch": "main", "commit": "9bf9ec53d5e87b025e2404069b71e7ebdc3a13e5" },
 | 
				
			||||||
  "vim-illuminate": { "branch": "master", "commit": "305bf07b919ac526deb5193280379e2f8b599926" },
 | 
					  "vim-illuminate": { "branch": "master", "commit": "305bf07b919ac526deb5193280379e2f8b599926" },
 | 
				
			||||||
  "which-key.nvim": { "branch": "main", "commit": "ce741eb559c924d72e3a67d2189ad3771a231414" }
 | 
					  "which-key.nvim": { "branch": "main", "commit": "ce741eb559c924d72e3a67d2189ad3771a231414" }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
@@ -1,4 +1,4 @@
 | 
				
			|||||||
if true then return {} end -- WARN: REMOVE THIS LINE TO ACTIVATE THIS FILE
 | 
					-- if true then return {} end -- WARN: REMOVE THIS LINE TO ACTIVATE THIS FILE
 | 
				
			||||||
 | 
					
 | 
				
			||||||
-- AstroCommunity: import any community modules here
 | 
					-- AstroCommunity: import any community modules here
 | 
				
			||||||
-- We import this file in `lazy_setup.lua` before the `plugins/` folder.
 | 
					-- We import this file in `lazy_setup.lua` before the `plugins/` folder.
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,4 +1,4 @@
 | 
				
			|||||||
if true then return {} end -- WARN: REMOVE THIS LINE TO ACTIVATE THIS FILE
 | 
					-- if true then return {} end -- WARN: REMOVE THIS LINE TO ACTIVATE THIS FILE
 | 
				
			||||||
 | 
					
 | 
				
			||||||
-- AstroUI provides the basis for configuring the AstroNvim User Interface
 | 
					-- AstroUI provides the basis for configuring the AstroNvim User Interface
 | 
				
			||||||
-- Configuration documentation can be found with `:h astroui`
 | 
					-- Configuration documentation can be found with `:h astroui`
 | 
				
			||||||
@@ -11,7 +11,7 @@ return {
 | 
				
			|||||||
  ---@type AstroUIOpts
 | 
					  ---@type AstroUIOpts
 | 
				
			||||||
  opts = {
 | 
					  opts = {
 | 
				
			||||||
    -- change colorscheme
 | 
					    -- change colorscheme
 | 
				
			||||||
    colorscheme = "tokyonight",
 | 
					    colorscheme = "tokyonight-night",
 | 
				
			||||||
    -- AstroUI allows you to easily modify highlight groups easily for any and all colorschemes
 | 
					    -- AstroUI allows you to easily modify highlight groups easily for any and all colorschemes
 | 
				
			||||||
    highlights = {
 | 
					    highlights = {
 | 
				
			||||||
      init = { -- this table overrides highlights in all themes
 | 
					      init = { -- this table overrides highlights in all themes
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user