From f22e4b481a6ea22d0a83db34ab0c96d684fe5413 Mon Sep 17 00:00:00 2001 From: Hau Nguyen Date: Sun, 29 Oct 2023 01:01:56 +0700 Subject: [PATCH] chore(nvim): cleanup unused --- data/nvim/init.lua | 97 ---------------------------------------------- 1 file changed, 97 deletions(-) diff --git a/data/nvim/init.lua b/data/nvim/init.lua index 8516631..8e3669e 100644 --- a/data/nvim/init.lua +++ b/data/nvim/init.lua @@ -123,103 +123,6 @@ require("lazy").setup({ enabled = true, }, - -- https://github.com/nyoom-engineering/oxocarbon.nvim - { - "nyoom-engineering/oxocarbon.nvim", - lazy = false, - priority = 1000, - config = function() - vim.cmd("colorscheme oxocarbon") - end, - enabled = false, - }, - - -- https://github.com/projekt0n/github-nvim-theme - { - "projekt0n/github-nvim-theme", - lazy = false, - priority = 1000, - config = function() - require("github-theme").setup({}) - - vim.cmd("colorscheme github_dark") - end, - enabled = false, - }, - - -- https://github.com/projekt0n/caret.nvim - { - "projekt0n/caret.nvim", - lazy = false, - priority = 1000, - config = function() - require("caret").setup({ - options = { - transparent = true, - }, - }) - - vim.cmd("colorscheme caret") - end, - enabled = false, - }, - - -- https://github.com/folke/tokyonight.nvim - { - "folke/tokyonight.nvim", - lazy = false, - priority = 1000, - config = function() - require("tokyonight").setup({ - transparent = true, - }) - - vim.cmd("colorscheme tokyonight") - end, - enabled = false, - }, - - { - "rebelot/kanagawa.nvim", - lazy = false, - priority = 1000, - config = function() - require("kanagawa").setup({ - theme = "lotus", - }) - - vim.cmd("colorscheme kanagawa") - end, - enabled = false, - }, - - -- https://github.com/rose-pine/neovim - { - "rose-pine/neovim", - name = "rose-pine", - lazy = false, - priority = 1000, - config = function() - require("rose-pine").setup({}) - - vim.cmd("colorscheme rose-pine") - end, - enabled = false, - }, - - -- https://github.com/ramojus/mellifluous.nvim - { - "ramojus/mellifluous.nvim", - lazy = false, - priority = 1000, - config = function() - require("mellifluous").setup({}) - - vim.cmd("colorscheme mellifluous") - end, - enabled = false, - }, - -- https://github.com/ibhagwan/fzf-lua { "ibhagwan/fzf-lua",