removed the colorscheme plugin

This commit is contained in:
ImNotTwig 2023-09-21 00:38:51 -05:00
parent 5d6156706c
commit d728272259
3 changed files with 2 additions and 17 deletions

View file

@ -3,3 +3,4 @@ require "keymaps"
require "Lazy"
require "autocommands"

View file

@ -16,7 +16,7 @@ vim.g.mapleader = " " -- make sure to set `mapleader` before lazy so your mappin
-- load lazy
require("lazy").setup("user", {
install = { colorscheme = { require("user.colorscheme").name } },
-- install = { colorscheme = { require("user.colorscheme").name } },
defaults = { lazy = true, version = "57cce98dfdb2f2dd05a0567d89811e6d0505e13b" },
ui = { wrap = "true" },
change_detection = { enabled = true },

View file

@ -1,16 +0,0 @@
local M = {
"folke/tokyonight.nvim",
commit = "e52c41314e83232840d6970e6b072f9fba242eb9",
lazy = false, -- make sure we load this during startup if it is your main colorscheme
priority = 1000, -- make sure to load this before all the other start plugins
}
M.name = "tokyonight-night"
function M.config()
local status_ok, _ = pcall(vim.cmd.colorscheme, M.name)
if not status_ok then
return
end
end
return M